diff --git a/.github/workflows/sqlx.yml b/.github/workflows/sqlx.yml new file mode 100644 index 0000000..13e611d --- /dev/null +++ b/.github/workflows/sqlx.yml @@ -0,0 +1,40 @@ +name: Publish SQLx container + +on: + push: + branches: + - "dev" + +env: + IMAGE: tools-sqlx + +jobs: + publish: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Log into Registry + uses: docker/login-action@v2 + with: + registry: ${{ vars.REGISTRY }} + username: ${{ secrets.REGISTRY_USER }} + password: ${{ secrets.REGISTRY_PASSWORD }} + + - name: Extract Metadata + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ vars.REGISTRY }}/${{ env.IMAGE }} + labels: | + org.opencontainers.image.title=SQLx + org.opencontainers.image.description=SQLx in a container + + - name: Build and Push + uses: docker/build-push-action@v4 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}