generated from ton-community/twa-template
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (27 loc) · 847 Bytes
/
main.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
34
name: Build and Deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
- name: install dependencies
run: npm install
- name: Build
run: npm run build
env:
CI: false
VITE_COINAPI_API_KEY: ${{ secrets.VITE_COINAPI_API_KEY }} # Pass the secret as an environment variable
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.
env:
VITE_COINAPI_API_KEY: ${{ secrets.VITE_COINAPI_API_KEY }} # Pass the secret as an environment variable
permissions:
contents: write