Skip to content

Commit

Permalink
fix: ci environment
Browse files Browse the repository at this point in the history
  • Loading branch information
blksnk committed Dec 13, 2023
1 parent 6ef4822 commit f62e7f9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,18 @@ jobs:
id: bun_install
run: bun install

- name: Setup environment
id: env_setup
env:
FIGMA_TOKEN: ${{secrets.FIGMA_TOKEN}}
FIGMA_TEAM_ID: ${{secrets.FIGMA_TEAM_ID}}
FIGMA_FILE_URLS: ${{secrets.FIGMA_FILE_URLS}}
run: |
touch .env
echo "FIGMA_TOKEN=${{env.FIGMA_TOKEN}}" >> .env
echo "FIGMA_TEAM_ID=${{env.FIGMA_TEAM_ID}}" >> .env
echo "FIGMA_FILE_URLS=${{env.FIGMA_FILE_URLS}}" >> .env
- name: Token update
id: token_update
run: |
Expand Down

0 comments on commit f62e7f9

Please sign in to comment.