Skip to content

Commit

Permalink
FIX
Browse files Browse the repository at this point in the history
  • Loading branch information
hermanwenhe committed Dec 6, 2023
1 parent 63e999c commit a6ceef1
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions .github/workflows/compressandrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,15 @@ jobs:
echo "${base}.zip" >> zipfiles.txt
done
# - name: Get latest tag
# id: gettag
# run: |
# TAG=$(git describe --tags --abbrev=0 2>/dev/null)
# if [ "$?" -ne 0 ]; then
# echo "No tags found"
# echo ::set-output name=tag::
# else
# echo ::set-output name=tag::$TAG
# fi

- name: Create Release and Upload Assets
run: |
files=$(cat zipfiles.txt)
echo "files: $files"
echo "FILES=$files" >> $GITHUB_ENV
- name: Release
uses: softprops/action-gh-release@v1
with:
files: zipfiles.txt
files: ${{ env.FILES }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a6ceef1

Please sign in to comment.