Updated runners #133
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
# This workflow will build the extension and upload an artifact | |
name: Build and upload extension | |
on: | |
push: | |
branches: '**' | |
pull_request: | |
branches: '**' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install build dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends make gettext gnome-shell | |
- name: Build the extension bundle | |
run: | | |
make build | |
- name: Run checks on extension | |
run: | | |
make check | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: [email protected] | |
path: build/[email protected] |