Skip to content

chore: clean ups after 2yrs (#1) #1

chore: clean ups after 2yrs (#1)

chore: clean ups after 2yrs (#1) #1

Workflow file for this run

name: Release
on:
push:
branches: [main]
paths:
- gh-parallel
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set git identity
run: |-
git config user.name "github-actions"
git config user.email "[email protected]"
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_REF: ${{ github.ref }}
run: v=$(gh release list |awk '{print $1}' |awk -F\. '{print $2}' |head -1); v=$(($v+1)); gh release create --draft --generate-notes v0.$v.0 gh-parallel