-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Release script: Action required #108
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs within the next 7 days. Please check if the issue is still relevant in the most current version of the adapter and tell us. Also check that all relevant details, logs and reproduction steps are included and update them if needed. Thank you for your contributions. |
Not stale 🧐 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs within the next 7 days. Please check if the issue is still relevant in the most current version of the adapter and tell us. Also check that all relevant details, logs and reproduction steps are included and update them if needed. Thank you for your contributions. |
Hi, it looks like you are using
@alcalzone/release-script
to manage your releases.When updating to the latest version, you need to remove the following line from your
.github/workflows/test-and-release.yml
if you want the releases to keep working:deploy: # Trigger this step only when a commit on master is tagged with a version number if: | contains(github.event.head_commit.message, '[skip ci]') == false && github.event_name == 'push' && - github.event.base_ref == 'refs/heads/master' && startsWith(github.ref, 'refs/tags/v')
It may also look like this one:
deploy: # Trigger this step only when a commit on master is tagged with a version number if: | contains(github.event.head_commit.message, '[skip ci]') == false && github.event_name == 'push' && - github.event.base_ref == 'refs/heads/main' && startsWith(github.ref, 'refs/tags/v')
The text was updated successfully, but these errors were encountered: