Skip to content

Commit 491c692

Browse files
authored
fix: reorder steps (#480)
1 parent 7373eee commit 491c692

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/release-desktop.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,13 @@ jobs:
8484
app-id: ${{ secrets.BOT_ID }}
8585
private-key: ${{ secrets.BOT_SK }}
8686

87+
- name: Debug app token
88+
run: |
89+
echo "App token length: ${#APP_TOKEN}"
90+
echo "First 4 characters: ${APP_TOKEN:0:4}..."
91+
env:
92+
APP_TOKEN: ${{ steps.app_token.outputs.token }}
93+
8794
- uses: actions/checkout@v4
8895
with:
8996
# Use bot token for authenticated operations
@@ -98,9 +105,6 @@ jobs:
98105
scope: '@algorandfoundation'
99106
cache: 'npm'
100107

101-
- name: Install Rust stable
102-
uses: dtolnay/rust-toolchain@stable
103-
104108
- name: Install npm dependencies
105109
run: npm ci --ignore-scripts
106110
env:
@@ -109,6 +113,9 @@ jobs:
109113
# Let scripts run without the token
110114
- run: npm rebuild
111115

116+
- name: Install Rust stable
117+
uses: dtolnay/rust-toolchain@stable
118+
112119
- name: Download app build artifacts
113120
uses: actions/download-artifact@v4
114121
with:

0 commit comments

Comments
 (0)