Skip to content

Commit

Permalink
delete test release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nruffing committed Nov 22, 2023
1 parent a5fc98a commit 7e4b5ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 33 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,23 +83,20 @@ jobs:
needs: [lib_publish]
permissions:
contents: write
defaults:
run:
working-directory: ./DataGridVueDotnet
steps:
- uses: actions/checkout@v4
- name: Escape version
run: echo "ESCAPED_VERSION=$(echo "${{ env.TEST_VERSION }}" | sed 's/[^^]/[&]/g; s/\^/\\^/g')" >> $GITHUB_ENV
run: echo "ESCAPED_VERSION=$(echo "${{ env.VERSION }}" | sed 's/[^^]/[&]/g; s/\^/\\^/g')" >> $GITHUB_ENV
- name: Parse release notes
run: (grep -Pzo '(?<=### v${{ env.ESCAPED_VERSION }}\n)\X+(?=\n\n)' ../README.md)) > release_notes.txt
run: (grep -Pzo '(?<=### v${{ env.ESCAPED_VERSION }}\n)\X+?(?=\n\n)' README.md)) | tr -d '\0' > release_notes.txt
- name: Create release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ env.VERSION }}
release_name: v${{ env.VERSION }}
body_path: release_notes.txt
body_path: ${{ github.workspace }}/release_notes.txt

example_api_deploy:
runs-on: ubuntu-latest
Expand Down
27 changes: 0 additions & 27 deletions .github/workflows/create_release_test.yml

This file was deleted.

0 comments on commit 7e4b5ae

Please sign in to comment.