diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-12-08 10:27:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-08 10:27:28 +0000 |
commit | 76feda62addc16ebe742c899fb541b32f3089cdc (patch) | |
tree | b179c9ed85425ce60c6265e5e96eafb0fdeff14e /.github/workflows/release.yml | |
parent | 6b7f52796e22993e05e5c155298a1799c0ba23d8 (diff) | |
parent | ada071fcccdb648d99b610de1a3bb3e541463b61 (diff) |
Merge pull request #345 from themoeway/fix-publish-chrome
Fix stable deploy on release triggers
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..b700e2c4 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,25 @@ +name: release +on: + release: + types: [released] +permissions: {} +jobs: + build: + runs-on: ubuntu-latest + permissions: + actions: write + contents: write + steps: + - name: Dispatch publish-chrome + uses: aurelien-baudet/workflow-dispatch@93e95b157d791ae7f42aef8f8a0d3d723eba1c31 # pin@v2 + with: + workflow: publish-chrome + token: ${{ secrets.GITHUB_TOKEN }} + wait-for-completion: false + + - name: Dispatch publish-firefox + uses: aurelien-baudet/workflow-dispatch@93e95b157d791ae7f42aef8f8a0d3d723eba1c31 # pin@v2 + with: + workflow: publish-firefox + token: ${{ secrets.GITHUB_TOKEN }} + wait-for-completion: false |