2.0.17 - 2023-08-13 #10
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
# Workflow to update the "ppa" branch once a release is created | |
# This will trigger a build in the stable PPA: | |
# https://launchpad.net/~touchegg | |
# | |
# And also the COPR RPM repo: | |
# https://copr.fedorainfracloud.org/coprs/jose_exposito/touchegg/ | |
name: Release PPA | |
on: | |
release: | |
types: [published] | |
jobs: | |
update-ppa-branch: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Merge master branch into ppa branch | |
uses: devmasx/merge-branch@v1.3.1 | |
with: | |
type: now | |
from_branch: master | |
target_branch: ppa | |
github_token: ${{ github.token }} |