Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberpwnn authored Sep 19, 2021
1 parent 0eff733 commit 8ca84af
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "autoversion"
on:
push:
branches:
- "main"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v2
- name: Generate release tag
uses: cyberpwnn/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Release Tag
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ env.release_tag }}"
prerelease: false
title: "${{ env.release_tag }}"

0 comments on commit 8ca84af

Please sign in to comment.