Skip to content

Update superbarnacle.cfg #2

Update superbarnacle.cfg

Update superbarnacle.cfg #2

Workflow file for this run

name: Release tagged commit.
on:
push:
tags:
- '**'
jobs:
PRINT_TAG_NAME:
runs-on: ubuntu-latest
steps:
- name: GET TAG NAME
run: echo ${{ github.ref_name }}
PUBLISH_PRE-RELEASE:
runs-on: ubuntu-latest
steps:
- name: CREATE RELEASE
uses: softprops/[email protected]
if: startsWith(github.ref, 'refs/tags/')
with:
prerelease: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}