Skip to content

Commit

Permalink
Merge pull request #53 from vdice/fix/release-action
Browse files Browse the repository at this point in the history
fix(.github): update release.yml workflow
  • Loading branch information
vdice authored Apr 13, 2022
2 parents bb633a0 + 858b5a9 commit 6c6f754
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/release.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release

on:
push:
tags:
- "v*"

jobs:
assets:
name: Build and release assets
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2

- name: Install Dependencies
run: rustup target add wasm32-wasi

- name: Build WASM
run: make build

- name: Build bart
run: make bart

- name: Create release
uses: softprops/action-gh-release@v1
with:
fail_on_unmatched_files: true
generate_release_notes: true
files: |
target/wasm32-wasi/release/bartholomew.wasm
target/release/bart

0 comments on commit 6c6f754

Please sign in to comment.