Skip to content

build: bump golang.org/x/crypto from 0.16.0 to 0.17.0 (#70) #190

build: bump golang.org/x/crypto from 0.16.0 to 0.17.0 (#70)

build: bump golang.org/x/crypto from 0.16.0 to 0.17.0 (#70) #190

Workflow file for this run

name: release
on:
push:
branches:
- master
tags:
- "v*.*.*"
jobs:
docker:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true
- run: echo "TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- run: echo "SHA=$(git show --no-patch --no-notes --date=short-local --pretty='%as-%h')" >> $GITHUB_ENV
env:
TZ: UTC
- run: go build -o dist/github-bot -trimpath -ldflags "-X 'main.version=${SHA}'"
name: Build Binary
env:
CGO_ENABLED: "0"
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: "ghcr.io/bangumi/github-bot"
tags: |
type=sha,prefix={{branch}}-
type=ref,event=branch
type=ref,event=branch,suffix=-${{ env.SHA }}
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}