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 f2ff336 commit 70aff99Copy full SHA for 70aff99
1 file changed
.github/workflows/release.yaml
@@ -142,13 +142,19 @@ jobs:
142
discussion_category_name: "📣 Announcements"
143
files: ./release-packages/*
144
145
+ - name: Authenticate to GCP
146
+ run: |
147
+ echo "${{ secrets.GCP_UPLOAD_CREDENTIALS }}" > /tmp/gcp-key.json
148
+ shell: bash
149
+
150
- name: Upload .deb files to GCP bucket
151
uses: google-github-actions/upload-cloud-storage@v1
152
with:
153
path: ./release-packages/
154
destination: qbraid-code-server
155
glob: '*.deb'
- credentials: ${{ secrets.GCP_UPLOAD_CREDENTIALS }}
156
+ env:
157
+ GOOGLE_APPLICATION_CREDENTIALS: /tmp/gcp-key.json
158
159
package-macos-amd64:
160
name: x86-64 macOS build
0 commit comments