Merge pull request #175 from Raven-002/Add-rotate-shortcut #107
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: Publish polonium.kwinscript | |
on: | |
push: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt-get install -y kpackagetool5 npm | |
- name: Build with make | |
run: | | |
make build | |
sha256sum polonium.kwinscript > polonium.kwinscript.sha256sum | |
- name: Create release | |
run: | | |
gh release delete nightly --yes || true | |
git push --delete origin refs/tags/nightly || true | |
gh release create nightly \ | |
--prerelease \ | |
--title "Development build" \ | |
--notes "Get the latest version with all the new bugs and features." \ | |
polonium.kwinscript* |