-
Notifications
You must be signed in to change notification settings - Fork 184
33 lines (29 loc) · 1.04 KB
/
tmp.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Upload File
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set stable version file
run: |
echo ${{ secrets.GCS_RELEASE_KEY }} > vscode-vars
echo ${{ secrets.INSTRUMENTATION_KEY }} >> vscode-vars
echo ${{ secrets.MODIFIER_PAT }} >> vscode-vars
echo ${{ secrets.OVSX_PAT }} >> vscode-vars
echo ${{ secrets.SLACK_RELEASES_CHANNEL_WEBHOOK_URL }} >> vscode-vars
echo ${{ secrets.SLACK_VALIDATE_MARKETPLACE_WEBHOOK }} >> vscode-vars
echo ${{ secrets.VSCE_PAT }} >> vscode-vars
- name: Authenticate to Google Cloud
uses: "google-github-actions/auth@v1"
with:
credentials_json: ${{ secrets.GCS_RELEASE_KEY }}
- name: ⬆️ Upload latest stable version to GCS
uses: google-github-actions/upload-cloud-storage@v1
with:
path: vscode-vars
destination: tabnine
parent: false
gzip: false
headers: |-
content-type: text/plain