Skip to content

Commit

Permalink
Fix uploads.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Apr 26, 2024
1 parent 5cc5542 commit df872bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 44 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/full_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,16 +82,7 @@ jobs:
- name: Build mrv2
run: |
./runme_nolog.sh -t package
- name: Get repository owner # Name of the step
run: | # Multi-line command definition
owner_name=${{ github.repository.owner.login }}
echo "The repository owner is: $owner_name"
- name: Upload binaries # Conditional step
run: | # Multi-line command definition
if [[ $owner_name == 'ggarra13' ]]; then
# Your commands to be executed only for ggarra13
./bin/upload_sourceforge.sh
fi
shell: bash
run: |
./bin/upload_sourceforge.sh
13 changes: 2 additions & 11 deletions .github/workflows/full_macos12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,7 @@ jobs:
- name: Build mrv2
run: |
./runme_nolog.sh -t package
- name: Get repository owner # Name of the step
run: | # Multi-line command definition
owner_name=${{ github.repository.owner.login }}
echo "The repository owner is: $owner_name"
- name: Upload binaries # Conditional step
run: | # Multi-line command definition
if [[ $owner_name == 'ggarra13' ]]; then
# Your commands to be executed only for ggarra13
./bin/upload_sourceforge.sh
fi
shell: bash
run: |
./bin/upload_sourceforge.sh
13 changes: 2 additions & 11 deletions .github/workflows/full_macos14.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,6 @@ jobs:
run: |
./runme_nolog.sh -t package
- name: Get repository owner # Name of the step
run: | # Multi-line command definition
owner_name=${{ github.repository.owner.login }}
echo "The repository owner is: $owner_name"
- name: Upload binaries # Conditional step
run: | # Multi-line command definition
if [[ $owner_name == 'ggarra13' ]]; then
# Your commands to be executed only for ggarra13
./bin/upload_sourceforge.sh
fi
shell: bash
run: |
./bin/upload_sourceforge.sh
13 changes: 2 additions & 11 deletions .github/workflows/full_win64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,6 @@ jobs:
run: |
./runme_nolog.sh -t package -D TLRENDER_USD=OFF
- name: Get repository owner # Name of the step
run: | # Multi-line command definition
owner_name=${{ github.repository.owner.login }}
echo "The repository owner is: $owner_name"
- name: Upload binaries # Conditional step
run: | # Multi-line command definition
if [[ $owner_name == 'ggarra13' ]]; then
# Your commands to be executed only for ggarra13
./bin/upload_sourceforge.sh
fi
shell: bash
run: |
./bin/upload_sourceforge.sh

0 comments on commit df872bd

Please sign in to comment.