You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like the images got updated to v18 so they started failing. For
npm install v16 and for Docker just run the script directly, it seems
silly to waste time installing v16 just to run a script through yarn.
Copy file name to clipboardExpand all lines: .github/workflows/publish.yaml
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,12 @@ jobs:
29
29
- name: Checkout code-server
30
30
uses: actions/checkout@v3
31
31
32
+
- name: Install Node.js v16
33
+
uses: actions/setup-node@v3
34
+
with:
35
+
node-version: "16"
36
+
cache: "yarn"
37
+
32
38
- name: Download npm package from release artifacts
33
39
uses: robinraju/release-downloader@v1.7
34
40
with:
@@ -141,7 +147,7 @@ jobs:
141
147
VERSION: ${{ env.VERSION }}
142
148
run: |
143
149
git checkout -b update-version-${{ env.VERSION }}
144
-
git add .
150
+
git add .
145
151
git commit -m "chore: updating version to ${{ env.VERSION }}"
146
152
git push -u origin $(git branch --show)
147
153
gh pr create --repo coder/code-server-aur --title "chore: bump version to ${{ env.VERSION }}" --body "PR opened by @$GITHUB_ACTOR" --assignee $GITHUB_ACTOR
0 commit comments