diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..9697ee0 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,38 @@ +name: Build And Publish Docker + +on: + push: + branches: + - "main" + +jobs: + + build-latest: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + + - name: Install deps + run: apt update && apt install iptables -y + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@master + + - name: Login to Self-Hosted Registry + uses: docker/login-action@v3 + with: + registry: fung.uy + username: ${{ secrets.MYCO_REGISTRY_USER }} + password: ${{ secrets.MYCO_PERSONAL_ACCESS_TOKEN }} + + - name: Build and Push + uses: docker/build-push-action@v4 + with: + builder: ${{ steps.buildx.outputs.name }} + context: ./ + file: ./Dockerfile + platforms: linux/amd64 + push: true + tags: | + fung.uy/mycosystems/headphones:latest