diff options
author | 2022-09-03 18:38:39 +0530 | |
---|---|---|
committer | 2022-09-03 18:38:39 +0530 | |
commit | 7ef46aaf90028467a4a5b357b7a8bb1750a6d0e3 (patch) | |
tree | 981754752cf2d51667f1c1234188ab2632e7df2f | |
parent | 5e50519c75d7110c232f82db580a76b23aba04cd (diff) | |
download | whatsie-7ef46aaf90028467a4a5b357b7a8bb1750a6d0e3.tar.gz whatsie-7ef46aaf90028467a4a5b357b7a8bb1750a6d0e3.zip |
chore(ci): release dry-run action
-rw-r--r-- | .github/workflows/release-dry-run.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/release-dry-run.yml b/.github/workflows/release-dry-run.yml new file mode 100644 index 0000000..d04b847 --- /dev/null +++ b/.github/workflows/release-dry-run.yml @@ -0,0 +1,21 @@ +name: Release-Dry-Run + +on: + workflow_dispatch: + +jobs: + Release: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout source + uses: actions/checkout@v2 + - name: Go Semantic Release + uses: go-semantic-release/action@v1.17.0 + id: semrel + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + changelog-generator-opt: "emojis=true" + force-bump-patch-version: true + dry: true |