Skip to content

Commit

Permalink
Update environment variables in docker-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
robinv8 committed Jan 1, 2024
1 parent cdcd601 commit a8e6eff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ jobs:
- name: Build
run: pnpm run build
env:
NOTION_PAGE_ID: ${{ env.NOTION_PAGE_ID }}
NOTION_DOMAIN: ${{ env.NOTION_DOMAIN }}
TELEGRAM_CHAT_ID: ${{ env.TELEGRAM_CHAT_ID }}
CRAFT_CONFIG_SHARE_URL: ${{ env.CRAFT_CONFIG_SHARE_URL }}
NOTION_PAGE_ID: ${{ secrets.NOTION_PAGE_ID }}
NOTION_DOMAIN: ${{ vars.NOTION_DOMAIN }}
TELEGRAM_CHAT_ID: ${{ vars.TELEGRAM_CHAT_ID }}
CRAFT_CONFIG_SHARE_URL: ${{ secrets.CRAFT_CONFIG_SHARE_URL }}

- name: Build and push
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
Expand Down

0 comments on commit a8e6eff

Please sign in to comment.