Update release.yaml #36
Workflow file for this run
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: Release Charm to Edge and Publish Libraries | |
on: | |
push: | |
branches: | |
- test/arm-runner | |
jobs: | |
release: | |
name: Simme testing the ARM builders | |
runs-on: Ubuntu_ARM64_4C_16G_01 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Setup LXD | |
uses: canonical/[email protected] | |
with: | |
channel: latest/stable | |
- name: Setup charmcraft | |
id: setup-charmcraft | |
run: | | |
sudo snap install jq | |
sudo snap install charmcraft --classic | |
- name: Build charm(s) | |
id: builder | |
run: | | |
charmcraft pack | |
- name: Store charms | |
uses: actions/upload-artifact@v3 | |
with: | |
name: charms | |
path: ./*.charm |