Skip to content

Commit

Permalink
ci(release-please): pin action version and allow manually running act…
Browse files Browse the repository at this point in the history
…ion (#7222)

**Related Issue:** #

## Summary
The release-please action randomly started failing 3 days ago with this
[unhelpful
error](https://github.com/Esri/calcite-components/actions/runs/5360304923/jobs/9725004712#step:2:234).
It looks like they [released 3 days
ago](https://github.com/google-github-actions/release-please-action/releases/tag/v3.7.10),
so I'm pinning the version to the one before that and hoping it will fix
it.

I also added the
[`workflow_dispatch`](https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/)
trigger so we can run the action manually.
  • Loading branch information
benelan authored Jun 26, 2023
1 parent 739f0af commit 311e3b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy-latest.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Deploy Latest
on:
workflow_dispatch:
push:
branches: [master]
permissions:
Expand All @@ -9,7 +10,7 @@ jobs:
release-please:
runs-on: ubuntu-20.04
steps:
- uses: google-github-actions/release-please-action@v3
- uses: google-github-actions/release-please-action@v3.7.9
id: release
with:
command: manifest
Expand All @@ -22,7 +23,7 @@ jobs:
uses: actions/checkout@v3
with:
token: ${{ secrets.ADMIN_TOKEN }}
ref: release-please
ref: master
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 311e3b5

Please sign in to comment.