diff --git a/.github/workflows/ci.yml b/.github/workflows/main-branch.yml similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/main-branch.yml diff --git a/.github/workflows/tags.yaml b/.github/workflows/tags.yaml new file mode 100644 index 0000000..cd199e4 --- /dev/null +++ b/.github/workflows/tags.yaml @@ -0,0 +1,30 @@ +name: ci + +on: + push: + tags: + - '*' + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v2 + with: + platforms: linux/amd64,linux/arm64 + push: true + tags: rubixcubin/scala-graal-builder:${{ github.ref_name }}