Skip to content

Commit

Permalink
chore: fix deploy env var (QwikDev#2861)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley authored Feb 7, 2023
1 parent b879e0a commit 8e27c8e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 49 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ jobs:
- 'tsconfig.json'
- 'pnpm-lock.yaml'
- 'Cargo.yaml'
- '.github/workflows/*.yaml'
- 'scripts/*.ts'
- name: Print fullbuild output
run: echo ${{ steps.filter.outputs.fullbuild == 'true' || github.event.inputs.disttag != '' }}

Expand Down Expand Up @@ -384,7 +386,7 @@ jobs:
- name: Commit Build Artifacts
if: ${{ needs.changes.outputs.fullbuild == 'true' && github.event_name == 'push' }}
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
QWIK_API_TOKEN_GITHUB: ${{ secrets.QWIK_API_TOKEN_GITHUB }}
run: pnpm run qwik-save-artifacts

############ RELEASE ############
Expand Down
47 changes: 0 additions & 47 deletions .github/workflows/release-qwik-city.yml

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/qwik-save-artifacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { join } from 'node:path';
import { fileURLToPath } from 'node:url';

const __dirname = fileURLToPath(new URL('.', import.meta.url));
const token = process.env.API_TOKEN_GITHUB;
const token = process.env.QWIK_API_TOKEN_GITHUB;
const root = join(__dirname, '..');
const srcRepoRef = 'https://github.com/BuilderIO/qwik/commit/';

Expand Down

0 comments on commit 8e27c8e

Please sign in to comment.