Translated using Weblate (Arabic) #238
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: Pack extensions | |
on: | |
push: | |
paths-ignore: | |
- README.md | |
pull_request: | |
paths-ignore: | |
- README.md | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
container: archlinux:base-devel | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: node_modules | |
key: node_modules | |
- name: Prepare | |
run: | | |
pacman -Sy | |
pacman -S --noconfirm base gnome-shell gtk3 libadwaita gtk4 glib2 gobject-introspection | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Build | |
run: | | |
npm install | |
npm run github_action | |
- name: Upload Extension Pack | |
uses: actions/[email protected] | |
with: | |
name: [email protected] | |
path: _build/ |