Skip to content

ci:workflows fixing in progress #7

ci:workflows fixing in progress

ci:workflows fixing in progress #7

Workflow file for this run

name: Create Release
on:
push:
tags:
- 'v*'
jobs:
create_release:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: "README.md"
body_path: "README.md"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}