From 3bafe5ea51454e51b0fed01e0970bdadc44fd681 Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Wed, 16 Apr 2025 13:00:23 +0530 Subject: [PATCH 1/2] Add Publish Immutable Action to V4 --- .../workflows/publish-immutable-actions.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/publish-immutable-actions.yml diff --git a/.github/workflows/publish-immutable-actions.yml b/.github/workflows/publish-immutable-actions.yml new file mode 100644 index 000000000..7c2583479 --- /dev/null +++ b/.github/workflows/publish-immutable-actions.yml @@ -0,0 +1,20 @@ +name: 'Publish Immutable Action Version' + +on: + release: + types: [published] + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + packages: write + + steps: + - name: Checking out + uses: actions/checkout@v4 + - name: Publish + id: publish + uses: actions/publish-immutable-action@v0.0.4 From a5d2a0b73549bf742d1d1203402da606858a032a Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Thu, 17 Apr 2025 20:44:54 +0530 Subject: [PATCH 2/2] file name update --- ...publish-immutable-actions.yml => publish-immutable-action.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{publish-immutable-actions.yml => publish-immutable-action.yml} (100%) diff --git a/.github/workflows/publish-immutable-actions.yml b/.github/workflows/publish-immutable-action.yml similarity index 100% rename from .github/workflows/publish-immutable-actions.yml rename to .github/workflows/publish-immutable-action.yml