-
Notifications
You must be signed in to change notification settings - Fork 464
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
add pipeline to release plugin. #206
base: master
Are you sure you want to change the base?
Conversation
@@ -1 +1,2 @@ | |||
t/servroot | |||
/.idea/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't include your local editor ignores in the repo. Use git config --global core.excludesFile
.
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
nginx: [ '1.21.0', '1.21.1' ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why don't we use latest stable release too? (and latest mainline release)
nginx: [ '1.21.0', '1.21.1' ] | |
nginx: [ '1.22.0', '1.21.6' ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just saw the PR date and understood why those were the versions :)
- name: Checkout source | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: 'nginx/nginx' #release-1.21.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So we don't have to repeat ourselves each time upgrading nginx.
repository: 'nginx/nginx' #release-1.21.1 | |
repository: 'nginx/nginx' |
Hi, @wildone Does it could coexist your proposed actions? or if it couldn't, I consider it could be satisfied to integrate your PR. WDYT? |
add a matrixed pipeline to create a release with plugin artifacts.