Skip to content

Commit

Permalink
Update artifact-links.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzadafridi authored Aug 29, 2024
1 parent 87b7879 commit 28adc35
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/artifact-links.yml
Original file line number Diff line number Diff line change
@@ -1 +1,22 @@
name: Generate Artifact Links

on:
workflow_run:
workflows: ["Build Android", "Build iOS", "Build Desktop", "Build macOS", "Build Web"]
types:
- completed

jobs:
generate-artifact-links:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: List artifacts
run: |
echo "Artifact URLs for download:"
echo "Android APK: ${{ needs.build-android.outputs.artifact-url }}"
echo "iOS Framework: ${{ needs.build-ios.outputs.artifact-url }}"
echo "Desktop JAR: ${{ needs.build-desktop.outputs.artifact-url }}"
echo "Web App: ${{ needs.build-web.outputs.artifact-url }}"

0 comments on commit 28adc35

Please sign in to comment.