try again
This commit is contained in:
parent
78d03b437d
commit
48dd21a057
1 changed files with 7 additions and 16 deletions
23
.github/workflows/release.yaml
vendored
23
.github/workflows/release.yaml
vendored
|
|
@ -90,28 +90,19 @@ jobs:
|
||||||
|
|
||||||
# Set an output parameter `uname` for use in subsequent steps
|
# Set an output parameter `uname` for use in subsequent steps
|
||||||
run: |
|
run: |
|
||||||
apk add zip
|
apk add zip python3 python3-pip
|
||||||
python --version
|
ls -lh
|
||||||
|
pwd
|
||||||
python3 --version
|
python3 --version
|
||||||
pip install -e .[build]
|
pip3 install -e .[build]
|
||||||
EXEC_SUFFIX=${{ matrix.package-suffix }} make executable
|
EXEC_SUFFIX=_${{ matrix.arch }} make executable
|
||||||
zip dist/ytdl-sub${{ matrix.package-suffix }}.zip dist/ytdl-sub${{ matrix.package-suffix }}
|
mv dist/ytdl-sub_${{ matrix.arch }} /artifacts
|
||||||
tar czf dist/ytdl-sub${{ matrix.package-suffix }}.tar.gz dist/ytdl-sub${{ matrix.package-suffix }}
|
|
||||||
uname -a
|
|
||||||
echo ::set-output name=uname::$(uname -a)
|
|
||||||
|
|
||||||
- name: Get the output
|
|
||||||
# Echo the `uname` output parameter from the `runcmd` step
|
|
||||||
run: |
|
|
||||||
echo "The uname output was ${{ steps.runcmd.outputs.uname }}"
|
|
||||||
|
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
dist/ytdl-sub${{ matrix.package-suffix }}
|
artifacts/ytdl-sub_${{ matrix.arch }}
|
||||||
dist/ytdl-sub${{ matrix.package-suffix }}.zip
|
|
||||||
dist/ytdl-sub${{ matrix.package-suffix }}.tar.gz
|
|
||||||
|
|
||||||
##################################################################################################
|
##################################################################################################
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue