fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.23 #180
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: Push to docker | |
# on: | |
# push: | |
# branches: | |
# - "dev" | |
# jobs: | |
# docker: | |
# env: | |
# DOCKER_REPO: minskylab/hasura-auth-webhook | |
# runs-on: ubuntu-20.04 | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v2 | |
# - 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.DOCKER_USERNAME }} | |
# password: ${{ secrets.DOCKER_TOKEN }} | |
# - name: Build and push | |
# id: docker_build | |
# uses: docker/build-push-action@v2 | |
# with: | |
# push: true | |
# tags: | | |
# ${{ env.DOCKER_REPO }}:${{ github.sha }} | |
# ${{ env.DOCKER_REPO }}:dev |