Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
Create release tagging automation (#15)
Browse files Browse the repository at this point in the history
* Add documentation

* Add release automation
  • Loading branch information
kellertk authored Nov 7, 2020
1 parent ae6cebb commit 4e35a64
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
push:
branches:
- main

name: Create new relese

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Create Release
id: create_release
uses: zendesk/action-create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18 changes: 18 additions & 0 deletions .github/workflows/tag-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 'Update latest release tag'

on:
release:
types:
- published
- edited


jobs:
run-tag-latest:
runs-on: windows-latest
steps:
- uses: Actions-R-Us/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
publish_latest_tag: true

0 comments on commit 4e35a64

Please sign in to comment.