-
Notifications
You must be signed in to change notification settings - Fork 125
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
[FEAT] Add windows_latest to Github workflow matrix OS #354
base: main
Are you sure you want to change the base?
Conversation
uses: rez0n/actions-github-release@main | ||
- name: Checkout | ||
id: latest_release | ||
env: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: ${{ github.repository }} | ||
type: "stable" | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- run: | | ||
output=$(git describe --tags --abbrev=0) | ||
echo "::set-output name=release::$output" |
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.
Remind me @jared-rimmer - what was the aim of this change? It's been a while since I looked at this. Or is it something that was deleted in a merge conflict situation?
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 have two slight concerns with it:
- I think
set-output
is being deprecated in favour of$GITHUB_OUTPUT
instead. - This won't allow for non-stable releases, or if we tag with something else. If this is the only way of getting it to work with Powershell, it might be worth having this only when it's PowerShell, and then retaining the original action for ubuntu
What do you think?
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.
Yep your solution sounds good!
Overview
Update type - breaking / non-breaking
What does this solve?
Outstanding questions
What databases have you tested with?