Skip to content

Commit

Permalink
Apparently runs-on doesn't have access to env context
Browse files Browse the repository at this point in the history
  • Loading branch information
pgilad committed Jun 3, 2024
1 parent 88a3867 commit 6dfc412
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
ensure-valid-artifact:
name: Ensure valid artifact
runs-on: ${{ env.DEFAULT_OS_VERSION }}
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@v4
Expand All @@ -93,7 +93,7 @@ jobs:
deploy-docs:
name: Deploy Docs
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
runs-on: ${{ env.DEFAULT_OS_VERSION }}
runs-on: ubuntu-latest
needs: [build, ensure-valid-artifact]
steps:
- uses: actions/download-artifact@v4
Expand All @@ -108,7 +108,7 @@ jobs:
deploy-npm:
name: Deploy NPM
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
runs-on: ${{ env.DEFAULT_OS_VERSION }}
runs-on: ubuntu-latest
needs: [build, ensure-valid-artifact]
steps:
- uses: actions/download-artifact@v4
Expand Down

0 comments on commit 6dfc412

Please sign in to comment.