Skip to content
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

Fetching all tags for release check #1680

Merged
merged 41 commits into from
Mar 8, 2024
Merged
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
09124a1
Update to Swig 4.2.0
rorbech Feb 22, 2024
b11f2e4
Clean up build-android-package node before building
rorbech Feb 22, 2024
4bb0c0c
GHA adding dependency for iOS test
nhachicha Feb 22, 2024
10cc4aa
Merge remote-tracking branch 'origin/cr/swig-4.2.0'
nhachicha Feb 22, 2024
f58b79e
test release (staging to Sonatype)
nhachicha Feb 22, 2024
d957d08
Install dep for realpath
nhachicha Feb 22, 2024
45b8986
fix
nhachicha Feb 22, 2024
15fe2d5
test
nhachicha Feb 23, 2024
3ec50d4
Passing argument properly
nhachicha Feb 23, 2024
c2ba602
Publish only the artifacts
nhachicha Feb 27, 2024
a19392f
Merge remote-tracking branch 'origin/main' into nh/GHA/release
nhachicha Feb 27, 2024
ee61cd3
Testing release
nhachicha Feb 27, 2024
be39ffa
Debugging
nhachicha Feb 27, 2024
1af080f
Fix IOCTL
nhachicha Feb 27, 2024
24c8b58
debug
nhachicha Feb 28, 2024
5bdc1f5
debug
nhachicha Feb 28, 2024
878a302
fix script
nhachicha Feb 28, 2024
338356a
debug
nhachicha Feb 28, 2024
ad4edd4
disable steps
nhachicha Feb 28, 2024
a94d06b
debug
nhachicha Mar 2, 2024
0ffc79c
debug
nhachicha Mar 2, 2024
9dd9f90
debug
nhachicha Mar 2, 2024
1f7e8a2
debug
nhachicha Mar 2, 2024
76a7e92
Merge remote-tracking branch 'origin/main' into nh/GHA/release
nhachicha Mar 6, 2024
e3020fc
Debugging vars
nhachicha Mar 6, 2024
c62402e
syntax
nhachicha Mar 6, 2024
fdf6357
syntax
nhachicha Mar 6, 2024
b628d3d
clean up
nhachicha Mar 7, 2024
de4081b
Conditional trigger for release
nhachicha Mar 7, 2024
af88825
Missed var
nhachicha Mar 7, 2024
3520357
Fallback in case no tag is found
nhachicha Mar 7, 2024
29ba516
fixes
nhachicha Mar 7, 2024
64d7444
fixes
nhachicha Mar 7, 2024
48d0da5
Fixes
nhachicha Mar 7, 2024
4010740
un-comment steps
nhachicha Mar 7, 2024
d56884d
re-enable publishing
nhachicha Mar 7, 2024
852befd
more cleanup
nhachicha Mar 7, 2024
60ef040
Changelog
nhachicha Mar 8, 2024
dd00b06
Merge remote-tracking branch 'origin/main' into nh/GHA/release
nhachicha Mar 8, 2024
dd72195
fetching all tags for release job check
nhachicha Mar 8, 2024
6f03cad
Merge remote-tracking branch 'origin/main' into nh/GHA/fixing_release
nhachicha Mar 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1657,6 +1657,7 @@ jobs:

- name: Get Git tag
run: |
git fetch --tags
gitTag=$(git describe --tags --exact-match HEAD) || echo "NONE"
echo "Git branch/tag: ${GITHUB_REF}/${gitTag:-'none'}"

Expand Down
Loading