Skip to content

Commit

Permalink
Workflow improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry08 committed Nov 10, 2023
1 parent dfd30c4 commit 4babf87
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
name: SoundCloudDownloader
path: SoundCloudDownloader/

- name: Checkout
uses: actions/checkout@v3

- name: Set version and package name
run: |
TAG_NAME="${{ github.ref_name }}"
Expand All @@ -59,9 +62,9 @@ jobs:
- name: Set body
run: |
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
TAG_MESSAGE_TEMP=$(git tag -l --format='%(contents)' ${GITHUB_REF#refs/*/})
TAG_MESSAGE=$(git tag -l --format='%(contents)' ${GITHUB_REF#refs/*/})
echo "TAG_MESSAGE<<EOF" >> $GITHUB_ENV
echo "$TAG_MESSAGE_TEMP" >> $GITHUB_ENV
echo "$TAG_MESSAGE" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Create package
Expand Down

0 comments on commit 4babf87

Please sign in to comment.