Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
skutsuza committed Nov 6, 2019
1 parent f47c28c commit 21f1b4c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 42 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
tags:
- '*.*.*'

name: Create Release

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Create Release
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
42 changes: 0 additions & 42 deletions ci/base/pipeline.yml

This file was deleted.

0 comments on commit 21f1b4c

Please sign in to comment.