Skip to content

Commit

Permalink
Download artifact from openapi-generator fork
Browse files Browse the repository at this point in the history
  • Loading branch information
michpohl committed Oct 24, 2024
1 parent 9573a62 commit b7f74ab
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/regenerate_tidalapi_module.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Regenerate Tidal API module

on:
push:
workflow_dispatch: # This workflow is manually triggered

jobs:
download-artifact:
runs-on: ubuntu-latest

steps:
# Step 1: Set up a checkout for the current repository (optional)
- name: Checkout repository
uses: actions/checkout@v3

# Step 2: Use GITHUB_TOKEN or PAT to authenticate the API request
- name: Download artifact from another repo
run: |
# Set the repository, run ID, and artifact name
REPO_OWNER="tidal-music"
REPO_NAME="openapi-generator"
ARTIFACT_NAME="openapi-generator-cli.jar"
# Get the latest workflow run ID
RUN_ID=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/$REPO_OWNER/$REPO_NAME/actions/runs?per_page=1" | jq -r '.workflow_runs[0].id')
# Get the artifact download URL
ARTIFACT_URL=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/$REPO_OWNER/$REPO_NAME/actions/runs/$RUN_ID/artifacts" | jq -r --arg ARTIFACT_NAME "$ARTIFACT_NAME" '.artifacts[] | select(.name == $ARTIFACT_NAME) | .archive_download_url')
# Download the artifact and extract it
curl -L -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -o artifact.zip "$ARTIFACT_URL"
unzip artifact.zip -d ./artifact

0 comments on commit b7f74ab

Please sign in to comment.