Skip to content

Commit

Permalink
🔧 (main.yml): specify path for downloaded artifact in GitHub Actions …
Browse files Browse the repository at this point in the history
…workflow

Adding the `path: ./build/` parameter to the `actions/download-artifact@v4` step ensures that the downloaded artifact is placed in the `./build/` directory. This change improves the organization of the workflow by clearly defining where artifacts should be stored, making it easier to manage and locate them during subsequent steps.
  • Loading branch information
MrHinsh committed Aug 7, 2024
1 parent 881d4c2 commit f47cce1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: AzureDevOpsMigrationTools-Scripts
path: ./build/
- uses: actions/create-github-app-token@v1
id: app-token
with:
Expand Down

0 comments on commit f47cce1

Please sign in to comment.