Skip to content

Commit

Permalink
(chore) Fix @upload-artifact GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
denniskigen committed Mar 6, 2024
1 parent 83c8e8b commit be7648e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
types:
- created

env:
TURBO_API: 'http://127.0.0.1:9080'
TURBO_TOKEN: ${{ secrets.TURBO_SERVER_TOKEN }}
TURBO_TEAM: ${{ github.repository_owner }}

jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -38,7 +43,7 @@ jobs:
uses: felixmosh/turborepo-gh-artifacts@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
server-token: ${{ secrets.TURBO_SERVER_TOKEN }}
server-token: ${{ env.TURBO_TOKEN }}

- name: Run lint, type checks and tests
run: yarn verify
Expand All @@ -52,6 +57,7 @@ jobs:
name: packages
path: |
packages/**/dist
overwrite: true

pre_release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -99,6 +105,7 @@ jobs:
name: packages
path: |
packages/**/dist
overwrite: true

release:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,4 @@ jobs:
name: playwright-report
path: playwright-report/
retention-days: 30
overwrite: true

0 comments on commit be7648e

Please sign in to comment.