Skip to content

Fix GitHub Action #8033

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions .github/workflows/nightly-linux64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ name: nightly-linux64
# pull_request:
# paths-ignore:
# - '**/README.md'
# on:
# workflow_dispatch:
# inputs:
# release:
# description: 'release'
# required: true
# default: 'nightly'
on:
workflow_dispatch:
inputs:
release:
description: 'release'
required: true
default: 'nightly'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -60,21 +60,21 @@ jobs:
id: createpackage
- name: List output directory
run: ls -lah out/
- name: Test Artefact zip
run: |
tar -cjf out/mega_artefact.tar.bz2 -C out $(echo ${{ steps.createpackage.outputs.FILES_OUT }} | tr ' ' '\n' | sed 's|^out/||')
- name: Upload binaries as Artefact
uses: actions/upload-artifact@v4
with:
name: openFrameworks-all-artefact-${{ env.TARGET }}-${{ matrix.bundle }}
path: out/mega_artefact.tar.bz2
retention-days: 1
# - name: Update Release
# uses: IsaacShelton/update-existing-release@v1.3.4
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# tag: nightly
# release: nightly
# prerelease: false
# replace: true
# files: ${{ steps.createpackage.outputs.FILES_OUT }}
# - name: Test Artefact zip
# run: |
# tar -cjf out/mega_artefact.tar.bz2 -C out $(echo ${{ steps.createpackage.outputs.FILES_OUT }} | tr ' ' '\n' | sed 's|^out/||')
# - name: Upload binaries as Artefact
# uses: actions/upload-artifact@v4
# with:
# name: openFrameworks-all-artefact-${{ env.TARGET }}-${{ matrix.bundle }}
# path: out/mega_artefact.tar.bz2
# retention-days: 1
- name: Update Release
uses: IsaacShelton/update-existing-release@v1.3.4
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: nightly
release: nightly
prerelease: false
replace: true
files: ${{ steps.createpackage.outputs.FILES_OUT }}