Skip to content

Commit

Permalink
Create beta.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SachsenspieltCoding authored Jul 28, 2023
1 parent 0c7531e commit 4a9d345
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Beta Deploy

on:
push:
branches:
- beta

jobs:
build-web:
name: Build Web
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install dependencies
run: yarn install

- name: Build Svelte app
run: yarn build

- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: web-artifacts
path: build/

upload-to-server:

0 comments on commit 4a9d345

Please sign in to comment.