Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
abose authored Feb 14, 2024
1 parent 905c362 commit 1e0eb42
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 31 additions & 1 deletion .github/workflows/cr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,34 @@ jobs:
draft: true,
prerelease: true
})
return data.id
return data.id
build-linux-bins:
needs: [ create-release ]
permissions:
contents: write
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
platform: [ ubuntu-20.04, ubuntu-22.04]

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: get Git Tag
shell: bash
run: echo "GIT_TAG_NAME=dev-app-v$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20

- name: GLIBC version
run: |
ldd --version
- name: install frontend dependencies
run: |
GLIBC_VER=$(ldd --version | head -n1 | awk '{print $NF}')
mv test "test-needGLIBC-${GLIBC_VER}.tar.gz"
ls
2 changes: 2 additions & 0 deletions test
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
test asset
hello world

0 comments on commit 1e0eb42

Please sign in to comment.