diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1230149 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/winget-submission.yml b/.github/workflows/winget-submission.yml index 6dcc509..cdc3575 100644 --- a/.github/workflows/winget-submission.yml +++ b/.github/workflows/winget-submission.yml @@ -4,14 +4,20 @@ on: release: types: [released] workflow_dispatch: + inputs: + tag_name: + description: 'Specific tag name' + required: true + type: string jobs: publish: runs-on: windows-latest steps: - - uses: vedantmgoyal2009/winget-releaser@latest + - uses: vedantmgoyal2009/winget-releaser@v1 with: identifier: rcmaehl.MSEdgeRedirect version: ${{ github.event.release.tag_name }} + release-tag: ${{ inputs.tag_name || github.release.tag_name }} delete-previous-version: 'true' token: ${{ secrets.MSEdgeRedirect_PAT }}