We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 01df673 + 5adf3ff commit 85c95f1Copy full SHA for 85c95f1
.github/workflows/release.yml
@@ -55,10 +55,13 @@ jobs:
55
node-version: 24.12.0
56
- run: npm install
57
- run: npm run build-snap
58
+ - name: Find snap file
59
+ id: find_snap
60
+ run: echo "snap_file=$(find dist -name '*.snap' -type f)" >> $GITHUB_OUTPUT
61
- name: Publish to Snap Store
62
uses: canonical/action-publish@v1
63
env:
64
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
65
with:
- snap: dist/tidal-hifi_*.snap
66
+ snap: ${{ steps.find_snap.outputs.snap_file }}
67
release: stable
0 commit comments