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 24da2ab commit 044af2cCopy full SHA for 044af2c
.github/workflows/remote-build.yml
@@ -14,5 +14,20 @@ jobs:
14
with:
15
ref: ${{ github.ref }}
16
persist-credentials: false
17
- - name: echo something
18
- run: echo "something"
+ # - name: Install npm & tsx
+ # 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