Skip to content

Commit

Permalink
fix(ci): try to force a trigger when pushing from CI 3/3
Browse files Browse the repository at this point in the history
  • Loading branch information
e-picas committed Dec 18, 2023
1 parent 462e6e5 commit 03f9e20
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
id-token: write # to enable use of OIDC for npm provenance
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:
id-token: write # to enable use of OIDC for npm provenance
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false

- name: debug
run: printenv; git remote -v; git status;
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ jobs:
id-token: write # to enable use of OIDC for npm provenance
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false

- name: Setup git
run: |
Expand Down

0 comments on commit 03f9e20

Please sign in to comment.