56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
name: Release
|
|
on: [workflow_dispatch]
|
|
jobs:
|
|
tag:
|
|
name: Tag
|
|
runs-on: ubuntu-latest
|
|
if: github.ref == 'refs/heads/master'
|
|
steps:
|
|
|
|
- name: Setup Node.js for use with actions
|
|
uses: actions/setup-node@v3
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
ref: "refs/pull/${{ github.event.number }}/merge"
|
|
|
|
- name: Install semantic-release
|
|
run: yarn global add --no-progress --non-interactive "semantic-release" "@semantic-release/exec"
|
|
|
|
- name: Run semantic-release
|
|
run: $(yarn global bin)/semantic-release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
# if: startsWith(github.ref, 'refs/tags/')
|
|
needs: [tag]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
ref: "refs/pull/${{ github.event.number }}/merge"
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2.1.4
|
|
with:
|
|
go-version: 1.17
|
|
id: go
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v1.12.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
password: ${{ secrets.DOCKER_PASS }}
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v2.9.1
|
|
with:
|
|
version: latest
|
|
args: release --rm-dist
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|