Skip to content

Merge pull request #2 from itsKedar/pr-CXFLW-multiple-custom-field #3

Merge pull request #2 from itsKedar/pr-CXFLW-multiple-custom-field

Merge pull request #2 from itsKedar/pr-CXFLW-multiple-custom-field #3

Workflow file for this run

name: Publish CxFlow GitHub Action
# Run this workflow on Tags matching v* pattern and publish a new release
on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create a Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}