You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Magister-Auto-Login/.github/workflows/compile.yml

34 lines
618 B

name: deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup checkout
uses: actions/checkout@v2
- name: Setup NodeJS v15
uses: actions/setup-node@v1
with:
node-version: 15
- name: Install Dependencies
run: yarn install
- name: Build for Chrome
run: yarn build -t chrome
- name: Build for Firefox
run: yarn build -t firefox
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: completed-builds
path: dist