Update actions

This commit is contained in:
Andrew Cassidy 2023-05-02 22:00:45 -07:00
parent 99ea5415ec
commit df3c2b4ba9

View File

@ -9,7 +9,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v2 uses: actions/setup-python@v4
with: with:
python-version: '3.x' python-version: '3.x'
@ -46,9 +46,7 @@ jobs:
- name: Publish to Github - name: Publish to Github
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: softprops/action-gh-release@v1 uses: ncipollo/release-action@v1
with: with:
name: Version ${{ env.VERSION_TITLE }} name: Version ${{ env.VERSION_TITLE }}
body_path: /tmp/RELEASE.md bodyfile: /tmp/RELEASE.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}