Skip to content

Implement github actions #1

Implement github actions

Implement github actions #1

Workflow file for this run

name: Create Release
on: push
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Generate release tag
id: generate_release_tag
uses: alexvingg/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: ''
- name: Create a Release
uses: ncipollo/release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
name: Release ${{ steps.generate_release_tag.outputs.release_tag }}
tag: ${{ steps.generate_release_tag.outputs.release_tag }}