Skip to content

install pycharm debugger for cicd #1

install pycharm debugger for cicd

install pycharm debugger for cicd #1

Workflow file for this run

name: Publish Github Release Notes
on:
push:
tags:
- "*.*.*"
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
actions: read
id-token: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Release
run: gh release create "${GITHUB_REF#refs/tags/}" --generate-notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}