update rm command for runner usage #14
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
on: | |
push: | |
branches: | |
- main | |
# tags: | |
# - "release" | |
pull_request: | |
name: Flatpak | |
jobs: | |
flathub: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: flathub/org.unofficialrevport.REVHubInterface | |
- name: "Get configs" | |
run: rm -rf * .git .github .gitignore && git clone https://github.com/unofficial-rev-port/REVHubInterface . && \ | |
mv flatpak/org.unofficialrevport.REVHubInterface.yml . && \ | |
mv flatpak/python3-requirements.json . && \ | |
bash rm -r -- !(org.unofficialrevport.REVHubInterface.yml|python3-requirements.json) | |
- name: "remove old tag" | |
id: removeOldTag | |
uses: mikefarah/yq@master | |
with: | |
cmd: "yq -i \'del(.modules[2].sources)\' org.unofficialrevport.REVHubInterface.yml" | |
- name: "add new tag" | |
id: addNewTag | |
uses: mikefarah/yq@master | |
with: | |
cmd: "yq \'.modules[2] += {\"sources\": [{\"type\": \"git\", \"url\": \"https://github.com/unofficial-rev-port/REVHubInterface.git\", \"disable-shallow-clone\": true, \"commit\": \'\"$(git log --format=\\\"%H\\\" -n 1)}]}\" org.unofficialrevport.REVHubInterface.yml" | |
- name: Create pr | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: "Update manifest && python3 requirements" | |
title: "Automated release update" | |
body: "Automated update of manifest and python3 requirements to flathub" | |
branch: master | |