Skip to content

Commit

Permalink
fix ci workflow run id
Browse files Browse the repository at this point in the history
  • Loading branch information
prolic committed Nov 14, 2024
1 parent fa7147f commit e2b79cb
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/flatpak-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ jobs:
- name: Download Flatpak Bundle
uses: actions/download-artifact@v3
run-id: ${{ github.event.workflow_run.id }}
with:
name: flatpak-bundle
run_id: ${{ github.event.workflow_run.id }}
path: .

- name: Create/Update Repository
run: |
Expand Down Expand Up @@ -97,6 +98,13 @@ jobs:
# Add the repo files to git
git add *.flatpakrepo
- name: Update Repository
run: |
flatpak build-update-repo repo-continuous --no-gpg-verify
if [ -d "repo-stable" ]; then
flatpak build-update-repo repo-stable --no-gpg-verify
fi
- name: Commit Repository Updates
run: |
git add repo-stable repo-continuous *.flatpakrepo
Expand Down Expand Up @@ -133,12 +141,12 @@ jobs:
<h1>Futr Flatpak Repository</h1>
<h2>Stable Repository</h2>
<p>To add the stable repository:</p>
<pre>flatpak remote-add --if-not-exists futr-stable https://futrnostr.github.io/futr-flatpak/repo-stable</pre>
<pre>flatpak remote-add --if-not-exists --no-gpg-verify futr-stable https://futrnostr.github.io/futr-flatpak/repo-stable</pre>
<p>Or download the <a href="futr-stable.flatpakrepo">repository file</a></p>
<h2>Development Repository</h2>
<p>To add the development repository:</p>
<pre>flatpak remote-add --if-not-exists futr-continuous https://futrnostr.github.io/futr-flatpak/repo-continuous</pre>
<pre>flatpak remote-add --if-not-exists --no-gpg-verify futr-continuous https://futrnostr.github.io/futr-flatpak/repo-continuous</pre>
<p>Or download the <a href="futr-continuous.flatpakrepo">repository file</a></p>
</body>
</html>
Expand Down

0 comments on commit e2b79cb

Please sign in to comment.