Skip to content
This repository has been archived by the owner on Aug 27, 2022. It is now read-only.

Commit

Permalink
workflows: build zip on push and pr
Browse files Browse the repository at this point in the history
Change-Id: I015137a0e100aa4c1e7b3ac3291d5c72c4aafabf
  • Loading branch information
andi34 committed Aug 19, 2021
1 parent 2fbdac3 commit b52b85a
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build

on:
push:
branches:
- dev
- stable2
- stable3
pull_request:
branches:
- dev
- stable2
- stable3
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: true
- name: Install modules
run: yarn install
- name: Build
run: yarn build
- name: Get git status
run: git status
- name: Pack zip
run: yarn pack:build
- name: Publish zip
uses: actions/upload-artifact@v2
with:
name: photobooth
path: archives/photobooth-*.zip

0 comments on commit b52b85a

Please sign in to comment.