We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f56a7f commit 3d98974Copy full SHA for 3d98974
1 file changed
.github/workflows/meta.yml
@@ -18,7 +18,7 @@ jobs:
18
- name: Dependencies
19
run: |
20
sudo apt update
21
- sudo apt install -y gh libxml2-utils python3 git
+ sudo apt install -y gh libxml2-utils python3 git pipx
22
mkdir upload
23
24
- name: Update metainfo
@@ -27,9 +27,12 @@ jobs:
27
28
- name: Update sources
29
30
+ pipx install poetry
31
git clone https://github.com/flatpak/flatpak-builder-tools.git
32
cd flatpak-builder-tools/cargo
- python3 flatpak-cargo-generator.py $GITHUB_WORKSPACE/Cargo.lock -o $GITHUB_WORKSPACE/upload/cargo-sources.json
33
+ poetry install
34
+ poetry run python3 flatpak-cargo-generator.py $GITHUB_WORKSPACE/Cargo.lock \
35
+ -o $GITHUB_WORKSPACE/upload/cargo-sources.json
36
37
- name: Commit and merge in changes
38
0 commit comments