generated from MechanicalFlower/godot-template
-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (33 loc) · 1010 Bytes
/
snapcraft-build.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
name: Snapcraft Build
on:
workflow_dispatch:
# Ensure the build works on main
push:
branches: [main]
# Ensure the build works on each pull request
pull_request:
# Build and publish on release
release:
types: [published]
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v1
- name: Load dotenv
run: just bump-version
- name: Build snap package
uses: snapcore/action-build@v1
with:
path: public/packaging
id: snapcraft
# Push, on each release, to the stable channel
- uses: snapcore/action-publish@v1
if: ${{ env.GITHUB_EVENT_NAME == 'release' || (env.GITHUB_EVENT_NAME == 'workflow_dispatch' && startsWith(github.ref, 'refs/tags/')) }}
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_STORE_LOGIN }}
with:
snap: ${{ steps.snapcraft.outputs.snap }}
release: stable