Skip to content

Commit 044af2c

Browse files
author
github-actions
committed
[BUILD]: 6c32fd682d6efde1beae3116869d2e4038069dcd
1 parent 24da2ab commit 044af2c

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

.github/workflows/remote-build.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,20 @@ jobs:
1414
with:
1515
ref: ${{ github.ref }}
1616
persist-credentials: false
17-
- name: echo something
18-
run: echo "something"
17+
# - name: Install npm & tsx
18+
# uses: actions/setup-node@v4
19+
# with:
20+
# node-version: '22'
21+
# cache: 'npm'
22+
# - name: Install dependencies
23+
# run: |
24+
# cd build
25+
# npm install typescript
26+
# npm install tsx
27+
- name: Build
28+
run: |
29+
cd build || echo "already in build"
30+
# get repository name and it's first word before hypher and pass that as argument
31+
REPO_NAME=$(echo ${{ github.repository }} | cut -d'-' -f1)
32+
echo "REPO_NAME: $REPO_NAME"
33+
# npm run build -- $REPO_NAME

0 commit comments

Comments
 (0)