github: fix build workflow syntax (#651) #1195
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
name: Builds | |
on: | |
push: | |
branches: | |
- latest-edge | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
jobs: | |
snap: | |
name: Trigger snap build | |
runs-on: ubuntu-24.04 | |
if: ${{ github.repository == 'canonical/lxd-pkg-snap' && github.actor != 'dependabot[bot]' }} | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
PACKAGE: "lxd" | |
REPO: "git+ssh://[email protected]/~canonical-lxd/lxd" | |
BRANCH: ${{ github.ref_name }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./.github/actions/lp-snap-build | |
with: | |
ssh-key: "${{ secrets.LAUNCHPAD_LXD_BOT_KEY}}" | |
- name: Trigger Launchpad snap build | |
run: | | |
set -eux | |
localRev="$(git rev-parse HEAD)" | |
# XXX: `ver` contains an array with the 2 versions | |
ver=($(lxd-snapcraft -package "${PACKAGE}" -get-version -file ~/"${PACKAGE}-pkg-snap-lp/snapcraft.yaml")) | |
rsync -a --exclude .git --delete . ~/"${PACKAGE}-pkg-snap-lp"/ | |
cd ~/"${PACKAGE}-pkg-snap-lp" | |
lxd-snapcraft -package lxd -set-version "${ver[0]}" -set-source-commit "${ver[1]}" | |
git add --all | |
git commit --all --quiet -s --allow-empty -m "Automatic upstream build (${BRANCH})" -m "Upstream commit: ${localRev}" | |
git show | |
git push --quiet |