another run...

This commit is contained in:
√(noham)² 2024-08-25 21:51:50 +02:00
parent be35f34856
commit 946d75ca19

View File

@ -54,7 +54,7 @@ jobs:
with: with:
name: GoFileCLI_win-x64 name: GoFileCLI_win-x64
path: | path: |
build/*.exe build/gofilecli.exe
build-linux-x64: build-linux-x64:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -91,7 +91,7 @@ jobs:
with: with:
name: GoFileCLI_linux-x64 name: GoFileCLI_linux-x64
path: | path: |
build/*.bin build/gofilecli.bin
build-macos: build-macos:
runs-on: macos-latest runs-on: macos-latest
@ -120,8 +120,8 @@ jobs:
- name: Build Executable with Nuitka - name: Build Executable with Nuitka
# --macos-app-icon=resources/icon.icns # --macos-app-icon=resources/icon.icns
run: | run: |
python -m nuitka --standalone --assume-yes-for-downloads --output-dir=dist --macos-create-app-bundle --macos-target-arch=arm64 gofilecli.py python -m nuitka --onefile --assume-yes-for-downloads --output-dir=dist --macos-target-arch=arm64 gofilecli.py
python -m nuitka --standalone --assume-yes-for-downloads --output-dir=dist_x86_64 --macos-create-app-bundle --macos-target-arch=x86_64 gofilecli.py python -m nuitka --onefile --assume-yes-for-downloads --output-dir=dist_x86_64 --macos-target-arch=x86_64 gofilecli.py
- name: Upload Artifact[osx-arm64] - name: Upload Artifact[osx-arm64]
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
@ -137,96 +137,96 @@ jobs:
path: | path: |
dist/* dist/*
create_draft_release: # create_draft_release:
name: Create Github draft release # name: Create Github draft release
if: ${{ github.event.inputs.doRelease == 'true' }} # if: ${{ github.event.inputs.doRelease == 'true' }}
needs: [build-win-x64,build-linux-x64,build-macos] # needs: [build-win-x64,build-linux-x64,build-macos]
runs-on: ubuntu-latest # runs-on: ubuntu-latest
steps: # steps:
- name: Audit gh version # - name: Audit gh version
run: gh --version # run: gh --version
- name: Check for existing release # - name: Check for existing release
id: check_release # id: check_release
run: | # run: |
echo "::echo::on" # echo "::echo::on"
gh release view --repo '${{ github.repository }}' '${{ github.event.inputs.tag }}' \ # gh release view --repo '${{ github.repository }}' '${{ github.event.inputs.tag }}' \
&& echo "already_exists=true" >> $GITHUB_ENV \ # && echo "already_exists=true" >> $GITHUB_ENV \
|| echo "already_exists=false" >> $GITHUB_ENV # || echo "already_exists=false" >> $GITHUB_ENV
env: # env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} # GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
- name: Checkout repo # - name: Checkout repo
if: env.already_exists == 'false' # if: env.already_exists == 'false'
uses: actions/checkout@v3 # uses: actions/checkout@v3
with: # with:
ref: '${{ github.event.inputs.ref }}' # ref: '${{ github.event.inputs.ref }}'
- name: Create release # - name: Create release
if: env.already_exists == 'false' # if: env.already_exists == 'false'
run: > # run: >
gh release create # gh release create
'${{ github.event.inputs.tag }}' # '${{ github.event.inputs.tag }}'
--draft # --draft
--repo '${{ github.repository }}' # --repo '${{ github.repository }}'
--title '${{ github.event.inputs.tag }}' # --title '${{ github.event.inputs.tag }}'
--target '${{ github.event.inputs.ref }}' # --target '${{ github.event.inputs.ref }}'
--generate-notes # --generate-notes
env: # env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} # GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
attach_to_release: # attach_to_release:
name: Attach native executables to release # name: Attach native executables to release
if: ${{ github.event.inputs.doRelease == 'true' }} # if: ${{ github.event.inputs.doRelease == 'true' }}
needs: create_draft_release # needs: create_draft_release
runs-on: ubuntu-latest # runs-on: ubuntu-latest
steps: # steps:
- name: Get current date # - name: Get current date
id: date # id: date
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV # run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
- name: GH version # - name: GH version
run: gh --version # run: gh --version
- name: Fetch executables # - name: Fetch executables
uses: actions/download-artifact@v3 # uses: actions/download-artifact@v3
- name: List downloaded artifacts # - name: List downloaded artifacts
run: | # run: |
echo "Listing files in workspace:" # echo "Listing files in workspace:"
ls -al # ls -al
echo "Checking artifact types:" # echo "Checking artifact types:"
for item in *; do # for item in *; do
if [ -d "$item" ]; then # if [ -d "$item" ]; then
echo "$item is a directory" # echo "$item is a directory"
elif [ -f "$item" ]; then # elif [ -f "$item" ]; then
echo "$item is a file" # echo "$item is a file"
else # else
echo "$item is neither a file nor a directory" # echo "$item is neither a file nor a directory"
fi # fi
done # done
- name: Tar (linux, macOS) # - name: Tar (linux, macOS)
run: for dir in *{osx,linux}*; do # run: for dir in *{osx,linux}*; do
if [ -d "$dir" ]; then # if [ -d "$dir" ]; then
tar cvzfp "${dir}_${{ env.date }}.tar.gz" "$dir" # tar cvzfp "${dir}_${{ env.date }}.tar.gz" "$dir"
fi # fi
done # done
- name: Zip (windows) # - name: Zip (windows)
run: for file in *win*; do # run: for file in *win*; do
if [ -f "$file" ]; then # if [ -f "$file" ]; then
zip -r "${file}_${{ env.date }}.zip" "$file" # zip -r "${file}_${{ env.date }}.zip" "$file"
fi # fi
done # done
- name: Upload # - name: Upload
run: | # run: |
until gh release upload --clobber --repo ${{ github.repository }} ${{ github.event.inputs.tag }} *.zip *.tar.gz; do # 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" # echo "Attempt $((++attempts)) to upload release artifacts failed. Will retry in 20s"
sleep 20 # sleep 20
done # done
timeout-minutes: 10 # timeout-minutes: 10
env: # env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} # GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}