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
This commit is contained in:
Ranesh Saha
2022-10-18 02:36:25 -07:00
committed by Facebook GitHub Bot
parent 92cbd8e0aa
commit 47bc32974b

View File

@@ -210,7 +210,7 @@ jobs:
path: 'flipper-server.tgz' path: 'flipper-server.tgz'
- name: GitHub Upload Release Artifacts - name: GitHub Upload Release Artifacts
if: ${{ needs.release.outputs.tag != '' }} 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: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with: