Skip to content

Commit

Permalink
Add build and release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdkleijn committed Jun 5, 2023
1 parent a803f23 commit a6a1ced
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build and Release

on:
push:
tags:
- "v*.*.*"

jobs:
build-and-release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Git
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
- name: Release
uses: softprops/action-gh-release@v0.1.15

0 comments on commit a6a1ced

Please sign in to comment.