From 349e62c51ada98f495dc746c38814a495cd0cbef Mon Sep 17 00:00:00 2001 From: Joel Ambass Date: Wed, 18 Sep 2024 17:42:22 +0200 Subject: [PATCH] ci(release): add workflow file for publishing releases to immutable action package (#170) This workflow file publishes new action releases to the immutable action package of the same name as this repo. --------- Co-authored-by: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> --- .github/workflows/publish-immutable-action.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/publish-immutable-action.yml diff --git a/.github/workflows/publish-immutable-action.yml b/.github/workflows/publish-immutable-action.yml new file mode 100644 index 0000000..f9050d5 --- /dev/null +++ b/.github/workflows/publish-immutable-action.yml @@ -0,0 +1,17 @@ +name: 'Publish Immutable Action' + +on: + release: + types: [published] + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + packages: write + steps: + - uses: actions/checkout@v4 + - name: Publish Immutable Action + uses: actions/publish-immutable-action@0.0.3