samantha's personal website!~ ✨ samanthanguyen.me
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

setup ci (#1)

* setup ci

* Update ci.yml

authored by

Samantha and committed by
GitHub
c4d4b18b 01a3871a

+28
+28
.github/workflows/ci.yml
··· 1 + name: Deploy 2 + 3 + on: [push] 4 + 5 + jobs: 6 + deploy: 7 + runs-on: ubuntu-latest 8 + name: Deploy 9 + steps: 10 + - name: Checkout repository 11 + uses: actions/checkout@v4 12 + - name: Setup Node.js 13 + uses: actions/setup-node@v4 14 + with: 15 + node-version: latest 16 + cache: 'npm' 17 + - name: Install dependencies 18 + run: npm install 19 + - name: Build website 20 + run: npm run build 21 + - name: Deploy 22 + uses: cloudflare/wrangler-action@v3 23 + with: 24 + working-directory: .svelte-kit/cloudflare 25 + command: pages deploy . --project-name=samanthanguyen-me 26 + apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} 27 + accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} 28 + gitHubToken: ${{ secrets.GITHUB_TOKEN }}