Skip to content

Commit

Permalink
Merge pull request #13 from totten/v0.15-civicrm-2-bowerup
Browse files Browse the repository at this point in the history
Update bower. Generate compiled releases tarballs.
  • Loading branch information
mattwire committed May 27, 2022
2 parents e01b97d + 481e257 commit e8e049c
Show file tree
Hide file tree
Showing 3 changed files with 3,079 additions and 14,474 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

name: Release

jobs:
build:
name: Make tarball
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 8
cache: 'npm'
- run: npm install
- run: npm run build
- run: npm run tarball
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: mosaico-dist.tar.gz
Loading

0 comments on commit e8e049c

Please sign in to comment.