Skip to content

Commit

Permalink
fixing how the env is passed
Browse files Browse the repository at this point in the history
  • Loading branch information
muhamadazmy committed Oct 17, 2023
1 parent 1d41a6f commit ffe8604
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bin-no-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
- name: Setup basesystem
run: |
cd bins
sudo ./bins-extra.sh --package basesystem
sudo -E ./bins-extra.sh --package basesystem
- name: Build package (${{ inputs.package }})
id: package
run: |
cd bins
sudo ./bins-extra.sh --package ${{ inputs.package }}
sudo -E ./bins-extra.sh --package ${{ inputs.package }}
- name: Publish flist (tf-autobuilder, ${{ steps.package.outputs.name }})
if: success()
uses: threefoldtech/publish-flist@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bin-package-18.04.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
- name: Setup basesystem
run: |
cd bins
./bins-extra.sh --package basesystem
sudo -E ./bins-extra.sh --package basesystem
- name: Build package (${{ inputs.package }})
id: package
run: |
cd bins
./bins-extra.sh --package ${{ inputs.package }}
sudo -E ./bins-extra.sh --package ${{ inputs.package }}
- name: Publish flist (tf-autobuilder, ${{ steps.package.outputs.name }})
if: success()
uses: threefoldtech/publish-flist@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bin-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ jobs:
- name: Setup basesystem
run: |
cd bins
sudo ./bins-extra.sh --package basesystem
sudo -E ./bins-extra.sh --package basesystem
- name: Build package (${{ inputs.package }})
id: package
run: |
cd bins
sudo ./bins-extra.sh --package ${{ inputs.package }}
sudo -E ./bins-extra.sh --package ${{ inputs.package }}
- name: Publish flist (tf-autobuilder, ${{ steps.package.outputs.name }})
if: success()
uses: threefoldtech/publish-flist@master
Expand Down
2 changes: 1 addition & 1 deletion bins/bins-extra.sh
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ exclude_libs() {

github_name() {
# force github print
echo "name=${1}" >> $env:GITHUB_OUTPUT
echo "name=${1}" >> $GITHUB_OUTPUT
echo "[+] github exported name: ${1}"
}

Expand Down

0 comments on commit ffe8604

Please sign in to comment.