Skip to content

Commit

Permalink
feat(web): Add GH release step to release action (#35)
Browse files Browse the repository at this point in the history
Adds GH release step to release action

[category:Web Infrastructure]
  • Loading branch information
RayRedGoose authored Sep 27, 2023
1 parent 0cd7f26 commit 291617c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,18 @@ jobs:
branch: "main"
tags: true

## Create a release on Github.
- name: Create Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: "@workday/canvas-tokens-web@${{steps.new-tag.outputs.tag}}"
name: "@workday/canvas-tokens-web@${{steps.new-tag.outputs.tag}}"
body: ${{steps.changeset.outputs.body}}
draft: false
prerelease: false

publish:
runs-on: ubuntu-latest
needs: 'release'
Expand Down

0 comments on commit 291617c

Please sign in to comment.