fix github actions

This commit is contained in:
Chris Titus 2024-07-16 23:55:54 -05:00
parent c90363181c
commit 829e46b3a8
2 changed files with 15 additions and 1 deletions

6
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"

View File

@ -33,6 +33,14 @@ jobs:
}
shell: pwsh
- name: Create Tag
id: create_tag
run: |
git tag ${{ steps.extract_version.outputs.version }}
git push origin ${{ steps.extract_version.outputs.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create and Upload Release
id: create_release
uses: softprops/action-gh-release@v2