Testing workflow errors #238
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: "Check symlinks and build theme" | ||
on: pull_request | ||
jobs: | ||
check: | ||
name: Check for dangling symlinks | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
- name: Check symlinks and build theme | ||
shell: bash | ||
run: sudo apt-get update | ||
run: sudo apt install -y libgtk-3-dev optipng --no-install-recommends | ||
Check failure on line 19 in .github/workflows/pull-request.yml GitHub Actions / Check symlinks and build themeInvalid workflow file
|
||
run: ./configure | ||
run: make test | ||
run: make | ||
run: cd build | ||
run: tar -cf elementary-xfce.tar.gz * | ||
- name: Upload theme artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: elementary-xfce | ||
path: build/elementary-xfce.tar.gz |