gohttpdUi/.github/workflows/release.yml

18 lines
327 B
YAML
Raw Normal View History

2022-02-21 19:37:10 +08:00
name: Release
2022-02-21 16:04:26 +08:00
on:
push:
tags:
2022-02-21 19:37:10 +08:00
- 'v*'
2022-02-21 16:04:26 +08:00
jobs:
2022-02-21 19:37:10 +08:00
release:
2022-02-21 16:04:26 +08:00
runs-on: ubuntu-latest
steps:
2022-02-21 19:37:10 +08:00
- uses: actions/checkout@v2
2022-02-21 16:04:26 +08:00
with:
2022-02-21 19:37:10 +08:00
fetch-depth: 0
- run: npx conventional-github-releaser -p angular
env:
2022-02-21 20:04:18 +08:00
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.ACTIONS_DEPLOY_KEY}}