Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
IrosTheBeggar committed May 6, 2024
1 parent b9945ba commit 4200b08
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build-webapp.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Build Webapp

on: push
on:
push:
# Pattern matched against refs/tags
tags:
- '*'

jobs:
release:
runs-on: ${{ matrix.os }}
Expand All @@ -11,10 +16,10 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: 14

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: build-electron

on: push
on:
push:
tags:
- '*'

jobs:
release:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 4200b08

Please sign in to comment.