forked from canonical/snapcraft
-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (57 loc) · 2.02 KB
/
publish.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: CI
on:
pull_request:
push:
branches:
- "feature/**"
# allow manual re-publishing as branches expire after 30 days
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Decision to Publish
id: decisions
run: |
# Secrets cannot be used in conditionals, so this is our dance:
# https://github.com/actions/runner/issues/520
if [[ -n "${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}" ]]; then
echo PUBLISH=true >> $GITHUB_OUTPUT
else
echo PUBLISH= >> $GITHUB_OUTPUT
fi
- if: steps.decisions.outputs.PUBLISH == 'true'
name: Checkout Snapcraft
uses: actions/checkout@v4
with:
# Fetch all of history so Snapcraft can determine its own version from git.
fetch-depth: 0
- if: steps.decisions.outputs.PUBLISH == 'true'
uses: canonical/action-build@v1
name: Build Snapcraft Snap
id: build
with:
snapcraft-channel: latest/candidate
- if: steps.decisions.outputs.PUBLISH == 'true'
name: Verify Snapcraft Snap
run: |
# Make sure it is installable.
sudo snap install --dangerous --classic ${{ steps.build.outputs.snap }}
- name: Get branch name
id: vars
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]
then
echo "branch=pr-${{ github.event.number }}" >> "$GITHUB_OUTPUT"
else
branch=$(echo ${GITHUB_REF#refs/*/} | sed -e 's|feature/\(.*\)|\1|')
echo "branch=$branch" >> "$GITHUB_OUTPUT"
fi
- name: Publish feature branch to edge/${{ steps.vars.outputs.branch }}
if: steps.decisions.outputs.PUBLISH == 'true'
uses: canonical/action-publish@v1
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
with:
snap: ${{ steps.build.outputs.snap }}
release: edge/${{ steps.vars.outputs.branch }}