From 9be03d3dab3a3a0f926cfea67702e8fca1d2c888 Mon Sep 17 00:00:00 2001 From: HarithaVattikuti <73516759+HarithaVattikuti@users.noreply.github.com> Date: Wed, 28 Aug 2024 17:22:02 -0500 Subject: [PATCH 1/2] Fix failure checks (#545) --- externals/install-dotnet.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/externals/install-dotnet.sh b/externals/install-dotnet.sh index caa3ea450..38a160cf1 100755 --- a/externals/install-dotnet.sh +++ b/externals/install-dotnet.sh @@ -331,6 +331,10 @@ get_machine_architecture() { echo "riscv64" return 0 ;; + powerpc|ppc) + echo "ppc" + return 0 + ;; esac fi From 344ba5f715ad225e24f7a6a6d4f6bd86bf6d56a6 Mon Sep 17 00:00:00 2001 From: Joel Ambass Date: Wed, 11 Sep 2024 12:03:04 +0200 Subject: [PATCH 2/2] Add workflow file for publishing releases to immutable action package This workflow file publishes new action releases to the immutable action package of the same name as this repo. This is part of the Immutable Actions project which is not yet fully released to the public. First party actions like this one are part of our initial testing of this feature. --- .../workflows/publish-immutable-actions.yml | 22 +++++++++++++++++++ 1 file changed, 22 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..1e02a3a15 --- /dev/null +++ b/.github/workflows/publish-immutable-actions.yml @@ -0,0 +1,22 @@ +name: 'Publish Immutable Action Version' + +on: + release: + types: [created] + +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@0.0.1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }}