mirror of
https://github.com/project-gauntlet/gauntlet.git
synced 2025-12-23 10:35:53 +00:00
Fix the rest invalid usages of github action uses field
This commit is contained in:
parent
4935ffd0d1
commit
3eae9013e0
3 changed files with 18 additions and 27 deletions
39
.github/workflows/release.yaml
vendored
39
.github/workflows/release.yaml
vendored
|
|
@ -4,44 +4,29 @@ on: workflow_dispatch
|
|||
|
||||
jobs:
|
||||
publish-init:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: ./.github/workflows/setup-linux.yaml
|
||||
- run: npm run publish-init-project --workspace @project-gauntlet/build
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
|
||||
uses: ./.github/workflows/setup-linux.yaml
|
||||
with:
|
||||
command: npm run publish-init-project --workspace @project-gauntlet/build
|
||||
|
||||
publish-linux:
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- publish-init
|
||||
steps:
|
||||
- uses: ./.github/workflows/setup-linux.yaml
|
||||
- run: npm run publish-linux-project --workspace @project-gauntlet/build
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
|
||||
uses: ./.github/workflows/setup-linux.yaml
|
||||
with:
|
||||
command: npm run publish-linux-project --workspace @project-gauntlet/build
|
||||
|
||||
publish-macos:
|
||||
runs-on: macos-latest
|
||||
needs:
|
||||
- publish-init
|
||||
steps:
|
||||
- uses: ./.github/workflows/setup-macos.yaml
|
||||
- run: npm run publish-macos-project --workspace @project-gauntlet/build
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
|
||||
uses: ./.github/workflows/setup-macos.yaml
|
||||
with:
|
||||
command: npm run publish-macos-project --workspace @project-gauntlet/build
|
||||
|
||||
publish-final:
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- publish-linux
|
||||
- publish-macos
|
||||
steps:
|
||||
- uses: ./.github/workflows/setup-linux.yaml
|
||||
- run: npm run publish-final-project --workspace @project-gauntlet/build
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
|
||||
uses: ./.github/workflows/setup-linux.yaml
|
||||
with:
|
||||
command: npm run publish-final-project --workspace @project-gauntlet/buil
|
||||
3
.github/workflows/setup-linux.yaml
vendored
3
.github/workflows/setup-linux.yaml
vendored
|
|
@ -32,3 +32,6 @@ jobs:
|
|||
- run: git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
|
||||
|
||||
- run: ${{ inputs.command }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
|
||||
|
|
|
|||
3
.github/workflows/setup-macos.yaml
vendored
3
.github/workflows/setup-macos.yaml
vendored
|
|
@ -37,3 +37,6 @@ jobs:
|
|||
- run: git config --global user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
|
||||
|
||||
- run: ${{ inputs.command }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue