Skip to content

Commit 13b85a6

Browse files
committed
Align step-id name
1 parent 449237a commit 13b85a6

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/library-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Load secrets from OP
12-
id: op-load-secret
12+
id: load-secrets
1313
uses: 1password/load-secrets-action@v2.0.0
1414
with:
1515
export-env: false
@@ -26,7 +26,7 @@ jobs:
2626
run: yarn build
2727
- name: Publish library
2828
run: |
29-
yarn config set npmAuthToken ${{ steps.op-load-secret.outputs.NPM_TOKEN }}
29+
yarn config set npmAuthToken ${{ steps.load-secrets.outputs.NPM_TOKEN }}
3030
yarn npm publish --access public
3131
env:
32-
NODE_AUTH_TOKEN: ${{ steps.op-load-secret.outputs.NPM_TOKEN }}
32+
NODE_AUTH_TOKEN: ${{ steps.load-secrets.outputs.NPM_TOKEN }}

.github/workflows/library-snapshot.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Load secrets from OP
11-
id: op-load-secret
11+
id: load-secrets
1212
uses: 1password/load-secrets-action@v2.0.0
1313
with:
1414
export-env: false
@@ -21,23 +21,23 @@ jobs:
2121
with:
2222
# Checkout full history to correclty check changeset status
2323
fetch-depth: 0
24-
token: ${{ steps.op-load-secret.outputs.ARABOT_PAT_TRIGGER_WORKFLOW }}
24+
token: ${{ steps.load-secrets.outputs.ARABOT_PAT_TRIGGER_WORKFLOW }}
2525
- name: Check changeset
2626
run: yarn changeset status --since origin/main
2727
- name: Build library
2828
run: yarn build
2929
- name: Update version
3030
run: yarn changeset version --snapshot
3131
env:
32-
GITHUB_TOKEN: ${{ steps.op-load-secret.outputs.ARABOT_PAT_TRIGGER_WORKFLOW }}
32+
GITHUB_TOKEN: ${{ steps.load-secrets.outputs.ARABOT_PAT_TRIGGER_WORKFLOW }}
3333
- name: Get package version
3434
id: package-version
3535
uses: martinbeentjes/npm-get-version-action@v1.3.1
3636
- name: Publish snapshot
3737
run: |
38-
yarn config set npmAuthToken ${{ steps.op-load-secret.outputs.NPM_TOKEN }}
38+
yarn config set npmAuthToken ${{ steps.load-secrets.outputs.NPM_TOKEN }}
3939
yarn npm publish --access public --tag ${{ steps.package-version.outputs.current-version }}
4040
env:
41-
NODE_AUTH_TOKEN: ${{ steps.op-load-secret.outputs.NPM_TOKEN }}
41+
NODE_AUTH_TOKEN: ${{ steps.load-secrets.outputs.NPM_TOKEN }}
4242
- name: Print snapshot version
4343
run: echo "Snapshot release - ${{ steps.package-version.outputs.current-version }}"

.github/workflows/storybook-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
pull-requests: write
2424
steps:
2525
- name: Load secrets from OP
26-
id: op-load-secret
26+
id: load-secrets
2727
uses: 1password/load-secrets-action@v2.0.0
2828
with:
2929
export-env: false
@@ -35,4 +35,4 @@ jobs:
3535
with:
3636
message: "🚀 **Preview Deployment:** [View Here](${{ needs.deploy.outputs.deploymentUrl }})"
3737
comment-tag: preview-url
38-
github-token: ${{ steps.op-load-secret.outputs.ARABOT_PAT_TRIGGER_WORKFLOW }}
38+
github-token: ${{ steps.load-secrets.outputs.ARABOT_PAT_TRIGGER_WORKFLOW }}

0 commit comments

Comments
 (0)