diff options
-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 |