Bump golang.org/x/net from 0.13.0 to 0.17.0 #18
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: Build docker image and publish release | |
# | |
#on: | |
# push: | |
# tags: | |
# - 'v[0-9]+.[0-9]+.[0-9]+' | |
# | |
#env: | |
# REGISTRY: ghcr.io | |
# IMAGE_NAME: ${{ github.repository }} | |
# | |
#jobs: | |
# build-and-push-image: | |
# name: Build and push docker image | |
# runs-on: ubuntu-latest | |
# permissions: | |
# contents: read | |
# packages: write | |
# | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v2 | |
# | |
# - name: Log in to the Container registry | |
# uses: docker/#-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | |
# with: | |
# registry: ${{ env.REGISTRY }} | |
# username: ${{ github.actor }} | |
# password: ${{ secrets.GITHUB_TOKEN }} | |
# | |
# - name: Extract metadata (tags, labels) for Docker | |
# id: meta | |
# uses: docker/metadata-action@v3 | |
# with: | |
# images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
# | |
# - name: Build and push Docker image | |
# id: docker_build | |
# uses: docker/build-push-action@v2 | |
# with: | |
# context: . | |
# file: ./build/package/Dockerfile | |
# push: true | |
# tags: ${{ steps.meta.outputs.tags }} | |
# labels: ${{ steps.meta.outputs.labels }} | |
# | |
# publish-release: | |
# needs: build-and-push-image | |
# name: Publish release | |
# runs-on: ubuntu-latest | |
# permissions: | |
# contents: write | |
# packages: write | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v2 | |
# | |
# - name: Create Release | |
# uses: softprops/action-gh-release@v1 | |
# if: startsWith(github.ref, 'refs/tags/v') | |
# with: | |
# draft: false | |
# prerelease: false | |
# token: ${{ secrets.RELEASE_TOKEN }} |