37 lines
969 B
YAML
37 lines
969 B
YAML
|
|
||
|
on: ['push']
|
||
|
|
||
|
jobs:
|
||
|
depoly:
|
||
|
runs-on: linux
|
||
|
container:
|
||
|
image: code.lightstands.xyz/standcoded/fedora:40
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Setup pnpm
|
||
|
run: |
|
||
|
corepack enable
|
||
|
corepack prepare pnpm@latest-9 --activate
|
||
|
pnpm config set store-dir /tmp/pnpm-store
|
||
|
|
||
|
- name: Cache Dependencies
|
||
|
id: dependencies-cache
|
||
|
uses: actions/cache@v4
|
||
|
with:
|
||
|
path: /tmp/pnpm-store
|
||
|
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||
|
|
||
|
- name: Install Dependencies
|
||
|
run: pnpm i
|
||
|
|
||
|
- name: Depoly to Cloudflare
|
||
|
uses: https://github.com/cloudflare/wrangler-action@v3
|
||
|
with:
|
||
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||
|
command: pages deploy --project-name=tututheapp dist
|
||
|
if: "env.GITHUB_REF_NAME == 'master'"
|
||
|
|