Skip to content

Commit

Permalink
ci: add github actions workflow for release
Browse files Browse the repository at this point in the history
  • Loading branch information
demartini committed Mar 15, 2021
1 parent 247dc08 commit a401f75
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

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

jobs:
release:
name: Release
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/[email protected]

- name: Create GitHub Release
uses: softprops/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: Omni.itermcolors

0 comments on commit a401f75

Please sign in to comment.