We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This workflow creates a version and then attempts to submit it all at once: https://github.com/fregante/ghatemplates/blob/main/webext/release.yml
It should probably take workflow_dispatch parameter to:
workflow_dispatch
The text was updated successfully, but these errors were encountered:
Docs: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onworkflow_dispatchinputs
use the latest release instead of creating a new one
This might be easiest added as logic into https://github.com/fregante/daily-version-action so it can just fake VERSION_CREATED and the other ENVs
VERSION_CREATED
on: workflow_dispatch: inputs: use-existing: type: boolean description: Skip version generation and use the latest tag
uses: fregante/daily-version-action@v2 with: use-existing: github.event.inputs.use-existing
submit only to a specific store
Maybe possible via environments:
on: workflow_dispatch: inputs: environment: description: What store to deploy type: environment
Sorry, something went wrong.
No branches or pull requests
This workflow creates a version and then attempts to submit it all at once: https://github.com/fregante/ghatemplates/blob/main/webext/release.yml
It should probably take
workflow_dispatch
parameter to:The text was updated successfully, but these errors were encountered: