Skip to content

7.3.1

7.3.1 #11

Workflow file for this run

name: release
on:
release:
types: [published]
jobs:
golang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version: ~1.20.6
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: ci/test.sh
- name: Build
run: ci/build.sh
- name: Prepare release version
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
- uses: AButler/[email protected]
with:
files: 'dist/*'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Release docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ci/docs.sh $RELEASE_VERSION ${{ secrets.GITHUB_TOKEN }}