Skip to content

Commit cb7a391

Browse files
committed
Get rid of outdated action to write a simple file. Update other actions.
1 parent b0af1fb commit cb7a391

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/custom-linux-build-spotty.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
22-
23-
- name: Write Build Configuration File
24-
uses: DamianReeves/write-file-action@v1.3
25-
with:
26-
path: ./src/client_id.txt
27-
contents: ${{ env.KEYMASTER_CLIENT_ID }}
28-
write-mode: overwrite
21+
uses: actions/checkout@v7
2922

3023
- name: Prepare build environment
3124
run: |
@@ -34,10 +27,12 @@ jobs:
3427
3528
- name: Build
3629
run: |
30+
echo ${{ env.KEYMASTER_CLIENT_ID }} > src/client_id.txt
31+
ls -l src
3732
./cross build --release --target=${{ github.event.inputs.target_triple }} --no-default-features --features default-linux
3833
3934
- name: Upload artifacts
40-
uses: actions/upload-artifact@v4
35+
uses: actions/upload-artifact@v7
4136
with:
4237
name: spotty-custom
4338
path: target/${{ github.event.inputs.target_triple }}/release/spotty

0 commit comments

Comments
 (0)