more bugs, more fixes, etc #96
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: Make polonium.kwinscript | |
on: | |
push: | |
branches: ["local", "v1.0"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt-get install -y kpackagetool5 npm | |
- name: Build with make | |
run: make build | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
# Artifact name | |
name: polonium.kwinscript | |
# A file, directory or wildcard pattern that describes what to upload | |
path: ./polonium.kwinscript | |
# The desired behavior if no files are found using the provided path. |