From 829e46b3a8a197f5cfff1404cc2a65797ca7b0c6 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Tue, 16 Jul 2024 23:55:54 -0500 Subject: [PATCH] fix github actions --- .github/dependabot.yml | 6 ++++++ .github/workflows/pre-release.yaml | 10 +++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..5ace4600 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/pre-release.yaml b/.github/workflows/pre-release.yaml index 12d2f286..6fd53aea 100644 --- a/.github/workflows/pre-release.yaml +++ b/.github/workflows/pre-release.yaml @@ -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 @@ -45,4 +53,4 @@ jobs: prerelease: true generate_release_notes: true env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file