mirror of
https://github.com/NohamR/GoFileCLI.git
synced 2025-05-24 00:49:00 +00:00
Update release.yml
This commit is contained in:
parent
4796df4b4f
commit
a8779b59fe
72
.github/workflows/release.yml
vendored
72
.github/workflows/release.yml
vendored
@ -135,4 +135,74 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: GoFileCLI_osx-arm64
|
name: GoFileCLI_osx-arm64
|
||||||
path: |
|
path: |
|
||||||
dist/*
|
dist/*
|
||||||
|
|
||||||
|
create_draft_release:
|
||||||
|
name: Create Github draft release
|
||||||
|
if: ${{ github.event.inputs.doRelease == 'true' }}
|
||||||
|
needs: [build-win-x64,build-linux-x64,build-macos]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Audit gh version
|
||||||
|
run: gh --version
|
||||||
|
|
||||||
|
- name: Check for existing release
|
||||||
|
id: check_release
|
||||||
|
run: |
|
||||||
|
echo "::echo::on"
|
||||||
|
gh release view --repo '${{ github.repository }}' '${{ github.event.inputs.tag }}' \
|
||||||
|
&& echo "already_exists=true" >> $GITHUB_ENV \
|
||||||
|
|| echo "already_exists=false" >> $GITHUB_ENV
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Checkout repo
|
||||||
|
if: env.already_exists == 'false'
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: '${{ github.event.inputs.ref }}'
|
||||||
|
|
||||||
|
- name: Create release
|
||||||
|
if: env.already_exists == 'false'
|
||||||
|
run: >
|
||||||
|
gh release create
|
||||||
|
'${{ github.event.inputs.tag }}'
|
||||||
|
--draft
|
||||||
|
--repo '${{ github.repository }}'
|
||||||
|
--title '${{ github.event.inputs.tag }}'
|
||||||
|
--target '${{ github.event.inputs.ref }}'
|
||||||
|
--generate-notes
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
attach_to_release:
|
||||||
|
name: Attach native executables to release
|
||||||
|
if: ${{ github.event.inputs.doRelease == 'true' }}
|
||||||
|
needs: create_draft_release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Get current date
|
||||||
|
id: date
|
||||||
|
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: GH version
|
||||||
|
run: gh --version
|
||||||
|
|
||||||
|
- name: Fetch executables
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
|
||||||
|
- name: Tar (linux, macOS)
|
||||||
|
run: for dir in *{osx,linux}*; do tar cvzfp "${dir}_${{ env.date }}.tar.gz" "$dir"; done
|
||||||
|
|
||||||
|
- name: Zip (windows)
|
||||||
|
run: for dir in *win*; do zip -r "${dir}_${{ env.date }}.zip" "$dir"; done
|
||||||
|
|
||||||
|
- name: Upload
|
||||||
|
run: |
|
||||||
|
until gh release upload --clobber --repo ${{ github.repository }} ${{ github.event.inputs.tag }} *.zip *.tar.gz; do
|
||||||
|
echo "Attempt $((++attempts)) to upload release artifacts failed. Will retry in 20s"
|
||||||
|
sleep 20
|
||||||
|
done
|
||||||
|
timeout-minutes: 10
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
x
Reference in New Issue
Block a user