Skip to content

Commit

Permalink
chore: actions: including prerelease checkout and run steps in slack …
Browse files Browse the repository at this point in the history
…workflow (#542)
  • Loading branch information
dkilgore-eightfold authored Feb 22, 2023
1 parent a0c01c7 commit 63b5f11
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/octuple-publish-alerts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,19 @@ jobs:
run: |
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
shell: bash
- name: Prerelease check
id: prerelease_check
if: contains(steps.tag_name.outputs.current_version, '-')
run: |
echo ::set-output name=prerelease::true
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: https://registry.npmjs.org/
- name: Run Yarn
run: yarn
- name: Get Changelog Entry
id: changelog_reader
uses: artlaman/[email protected]
Expand Down

0 comments on commit 63b5f11

Please sign in to comment.