ci: Use cache #31
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: zip-packaging | |
on: [ push, pull_request ] | |
jobs: | |
create-zip-package: | |
runs-on: ubuntu-latest | |
container: # We use the latest Arch Linux image, as we need the latest version of blueprint-compiler. We need make, so base-devel has to be used. | |
image: ghcr.io/archlinux/archlinux:base-devel | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Cache Bun dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.bun/install/cache | |
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }} | |
restore-keys: | | |
${{ runner.os }}-bun- | |
- name: Install dependencies | |
run: pacman -Syu --noconfirm blueprint-compiler typescript gobject-introspection libadwaita zip unzip | |
- uses: oven-sh/setup-bun@v2 | |
- name: Build & Package Noiseclapper | |
run: make pack | |
- name: Extract current branch name | |
id: branch-name | |
uses: tj-actions/branch-names@v7 | |
- name: Format branch name # Avoids GitHub Actions panicking about / characters in artifact names. | |
id: format-branch-name | |
run: echo "formatted_branch=$(echo ${{ steps.branch-name.outputs.current_branch }} | tr -s '/' '-')" >> $GITHUB_OUTPUT | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: noiseclapper-artifacts-${{ steps.format-branch-name.outputs.formatted_branch }} | |
path: Noiseclapper@JordanViknar.zip |