Skip to content

Commit

Permalink
πŸ› v1.0.6 Versioning Update
Browse files Browse the repository at this point in the history
  • Loading branch information
axtonprice authored Apr 19, 2022
1 parent 3c445d9 commit 5d6a162
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/automatic-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: 'Release'

on:
push:
branches:
- "main"
workflow_dispatch:
inputs:
semver:
description: 'Which version you want to increment? Use MAJOR, MINOR or PATCH'
required: true
default: 'PATCH'
label:
description: 'Add Labels. i.e final, alpha, rc'
required: true
default: ' Stable'

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

steps:
# Checkout sources
- name: 'Checkout'
uses: actions/checkout@v2

# ...
- name: 'πŸ‘·β€β™‚οΈ Build'
run: |
echo "BUILD COMPLETE πŸ‘"
# ...
- name: 'πŸ§ͺ TEST'
run: |
echo "TESTS PASSED πŸŽ‰"
- uses: 'rui-costa/action-automatic-semver-releases@latest'
name: "Automatic Release Update"
with:
TOKEN: '${{ secrets.GITHUB_TOKEN }}'
SEMVER: '${{ github.event.inputs.semver }}'
LABEL: '${{ github.event.inputs.label }}'
NOTES: '${{ steps.gen-notes.outputs.notes }}'

0 comments on commit 5d6a162

Please sign in to comment.