Skip to content

Commit

Permalink
backport CI fixes from @Azathothas
Browse files Browse the repository at this point in the history
* generate version file

* setup versioned releases
  • Loading branch information
Samueru-sama authored Dec 1, 2024
1 parent f055180 commit 5d6145d
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 7 deletions.
60 changes: 54 additions & 6 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,23 @@ jobs:
mkdir dist
mv *.AppImage* dist/
- name: Check version file
run: |
cat ~/version
echo "APP_VERSION=$(cat ~/version)" >> "${GITHUB_ENV}"
- name: Upload artifact
uses: actions/upload-artifact@v4.4.3
with:
name: AppImage
path: 'dist'


- name: Upload version file
uses: actions/upload-artifact@v4.4.3
with:
name: version
path: ~/version

release:
needs: [build]
permissions: write-all
Expand All @@ -43,14 +54,51 @@ jobs:
- uses: actions/download-artifact@v4.1.8
with:
name: AppImage
- uses: actions/download-artifact@v4.1.8
with:
name: version

- name: Read version
run: |
cat version
export VERSION="$(<version)"
echo "APP_VERSION=${VERSION}" >> "${GITHUB_ENV}"
#Version Release
- name: Del Previous Release
run: |
gh release delete "${APP_VERSION}" --repo "${GITHUB_REPOSITORY}" --cleanup-tag -y
env:
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
continue-on-error: true
- name: Continuous Releaser
uses: softprops/action-gh-release@v2
with:
name: "puddletag AppImage ${{ env.APP_VERSION }}"
tag_name: "${{ env.APP_VERSION}}"
prerelease: false
draft: false
generate_release_notes: false
make_latest: true
files: |
*.AppImage*
continue-on-error: false

- name: release
uses: marvinpinto/action-automatic-releases@latest
#Snapshot Release
- name: Get Date
run: |
SNAPSHOT_TAG="$(date --utc +'%Y%m%d-%H%M%S')"
echo SNAPSHOT_TAG="${SNAPSHOT_TAG}" >> "${GITHUB_ENV}"
continue-on-error: false
- name: Snapshot Releaser
uses: softprops/action-gh-release@v2
with:
title: Continuous build
automatic_release_tag: continuous
name: "Snapshot ${{ env.APP_VERSION }}"
tag_name: "${{ env.SNAPSHOT_TAG }}"
prerelease: false
draft: false
generate_release_notes: false
make_latest: false
files: |
*.AppImage*
repo_token: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: false
6 changes: 5 additions & 1 deletion puddletag-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ python -m pip install --no-cache-dir --upgrade wheel pyinstaller
python -m pip install --no-cache-dir --upgrade puddletag

VERSION="$(python -m pip show puddletag 2>/dev/null | awk '/Version:/ {print $2; exit}')"
[ -n "$VERSION" ] || VERSION=unknown
if [ -z "$VERSION" ]; then
echo "ERROR: Could not get version of puddletag"
exit 1
fi
echo "$VERSION" > ~/version

cp /usr/lib/ld-musl-x86_64.so.1 libc.musl-x86_64.so.1

Expand Down

0 comments on commit 5d6145d

Please sign in to comment.