From 47bc32974b6866e94d7072cc5dad1942ec595567 Mon Sep 17 00:00:00 2001 From: Ranesh Saha Date: Tue, 18 Oct 2022 02:36:25 -0700 Subject: [PATCH] Update action in release workflow (#4220) Summary: The release workflow is using a version of the github release action that is broken, due to ghr now being dynamically linked and not compatible with Alpine Linux's minimal version of libc. The fix is to use the version of the action which installs gcompat so that ghr can run on the docker image. ## Changelog Update release workflow to use version of action compatible with latest version of ghr. Pull Request resolved: https://github.com/facebook/flipper/pull/4220 Test Plan: N/A Reviewed By: nikoant Differential Revision: D40443738 Pulled By: aigoncharov fbshipit-source-id: 7765420fbe034aa80ce07c698ff83773c81ed52f --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1dd49e6a2..dddf1c759 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -210,7 +210,7 @@ jobs: path: 'flipper-server.tgz' - name: GitHub Upload Release Artifacts if: ${{ needs.release.outputs.tag != '' }} - uses: passy/github-upload-release-artifacts-action@v2.2.2 + uses: aigoncharov/github-upload-release-artifacts-action@2.2.3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: