Skip to content

Commit

Permalink
ci: fix first tag and heredoc
Browse files Browse the repository at this point in the history
  • Loading branch information
nadiamoe committed Jan 22, 2021
1 parent 94bda33 commit e5456ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ jobs:
id: changelog-full
uses: mikepenz/[email protected]
with:
fromTag: v0.0.0
fromTag: v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Write changelog to CHANGELOG.md
run: |
cat > CHANGELOG.md < ${{ steps.changelog-full.outputs.changelog }}
cat > CHANGELOG.md << ${{ steps.changelog-full.outputs.changelog }}
- name: Pre release
run: make ci/prerelease
- name: Notify failure via Slack
Expand All @@ -119,4 +119,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Push push changelog to release notes
run: | # gh does not support editing releases
hub release edit -m "${{ steps.changelog-latest.outputs.changelog }}" $TAG
hub release edit -m $TAG -m "${{ steps.changelog-latest.outputs.changelog }}" $TAG

0 comments on commit e5456ec

Please sign in to comment.