Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix Snap publishing in workflows. (#1182)
- Loading branch information
1 parent
0e3d4cb
commit 8a0a28593d540a10d75df99c9279cc398e35fefd
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -68,8 +68,9 @@ jobs: | ||
make _build_snap && \ | ||
find doctl_v*.snap -print -exec echo ::set-output name=snap::{} \; | ||
- uses: snapcore/[email protected] | ||
- uses: snapcore/[email protected] | ||
env: | ||
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_TOKEN }} | ||
with: | ||
store_login: ${{ secrets.SNAP_TOKEN }} | ||
snap: ${{ steps.build.outputs.snap }} | ||
release: stable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -28,8 +28,9 @@ jobs: | ||
make _build_snap && \ | ||
find doctl_v*.snap -print -exec echo ::set-output name=snap::{} \; | ||
- uses: snapcore/[email protected] | ||
- uses: snapcore/[email protected] | ||
env: | ||
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_TOKEN }} | ||
with: | ||
store_login: ${{ secrets.SNAP_TOKEN }} | ||
snap: ${{ steps.build.outputs.snap }} | ||
release: candidate |