We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d9a4e commit 2b2e4fcCopy full SHA for 2b2e4fc
.github/workflows/build-tarball.yml
@@ -6,6 +6,7 @@ jobs:
6
trigger-tester:
7
runs-on: ubuntu-latest
8
steps:
9
+ - uses: actions/checkout@v3
10
- name: "Install tools"
11
run: sudo apt-get install -y libgdbm-dev libmbedtls-dev
12
- name: "Build"
@@ -14,3 +15,8 @@ jobs:
14
15
chmod +x get-gauche.sh
16
./get-gauche.sh --prefix /usr --destdir package --version latest --force
17
(cd package; tar czvf ../gauche-binary-ubuntu-latest.tar.gz .)
18
+ - name: "Upload"
19
+ run: |
20
+ gh release upload v1 gauche-binary-ubuntu-latest.tar.gz --clobber
21
+ env:
22
+ GITHUB_TOKEN: ${{ github.TOKEN }}
build-binary-tarball.sh
0 commit comments