Publish #9
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
# mvp: https://github.com/mariadb-corporation/skysql-api-go/blob/main/.github/workflows/publish.yml | ||
name: Publish | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- next | ||
workflow_dispatch: | ||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
jobs: | ||
release: | ||
name: Publish new release | ||
if: github.ref == 'refs/heads/master' | ||
timeout-minutes: 5 | ||
runs-on: ubuntu-latest | ||
outputs: | ||
version: ${{ steps.version.outputs.version }} | ||
steps: | ||
- name: Check Out Repo | ||
uses: actions/checkout@v2 | ||
with: # https://stackoverflow.com/a/65081720 | ||
ref: ${{ github.event.workflow_run.head_branch }} | ||
fetch-depth: "0" | ||
- name: Install Auto | ||
run : npm i -g auto @auto-it/upload-assets @auto-it/git-tag @auto-it/pr-body-labels @auto-it/exec | ||
- name: Configure git | ||
run: | | ||
git config --global user.email "kbw-ci-bot@mail.ccil-kbw.com" | ||
git config --global user.name "kbw-ci-bot" | ||
- name: Publish new version | ||
run: GH_TOKEN="${{ secrets.GITHUB_TOKEN }}" auto shipit | ||
- id: version | ||
name: Output new version | ||
run: | | ||
echo "$(git describe --tags)" | ||
echo "version=$(git describe --tags)" >> "$GITHUB_OUTPUT" | ||
releases-matrix: | ||
needs: release | ||
name: Release Go Binary | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
goos: [linux, darwin] | ||
goarch: [amd64] | ||
steps: | ||
- name: Release Version | ||
env: | ||
RELEASE_VERSION: ${{ needs.jobs.release.outputs.version }} | ||
run: echo "$RELEASE_VERSION" | ||
- uses: actions/checkout@v3 | ||
- uses: wangyoucao577/go-release-action@v1.40 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
goos: ${{ matrix.goos }} | ||
goarch: ${{ matrix.goarch }} | ||
goversion: "https://dl.google.com/go/go1.18.2.linux-amd64.tar.gz" | ||
project_path: "./cmd/discord_bot" | ||
binary_name: "iqamabot" | ||
extra_files: README.md | ||
release_tag: ${{ jobs.release.outputs.version }} | ||
Check failure on line 66 in .github/workflows/publish.yml GitHub Actions / PublishInvalid workflow file
|
||
- uses: wangyoucao577/go-release-action@v1.40 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
goos: ${{ matrix.goos }} | ||
goarch: ${{ matrix.goarch }} | ||
goversion: "https://dl.google.com/go/go1.18.2.linux-amd64.tar.gz" | ||
project_path: "./cmd/darsrec" | ||
binary_name: "darsrec" | ||
extra_files: README.md | ||
release_tag: ${{ jobs.release.outputs.version }} | ||
- uses: wangyoucao577/go-release-action@v1.40 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
goos: ${{ matrix.goos }} | ||
goarch: ${{ matrix.goarch }} | ||
goversion: "https://dl.google.com/go/go1.18.2.linux-amd64.tar.gz" | ||
project_path: "./cmd/yt-upload-v2" | ||
binary_name: "yt-upload-v2" | ||
extra_files: README.md | ||
release_tag: ${{ jobs.release.outputs.version }} | ||
docker-push: | ||
needs: release | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Log in to the Container registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
- name: AMD64 - Build and push Docker image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./build/docker/Dockerfile | ||
push: true | ||
tags: ${{ jobs.release.outputs.version }} | ||
labels: ${{ steps.meta.outputs.labels }} |