-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from Geoportail-Luxembourg/GSLUX-635_automate…
…_tag_on_merge trigger auto tag on PR edit and merge
- Loading branch information
Showing
3 changed files
with
84 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,53 @@ | ||
name: CI_package | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
tags: | ||
- '*' | ||
jobs: | ||
tag-version: | ||
if: github.ref_type != 'tag' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout ${{ github.head_ref }} | ||
uses: actions/checkout@v4 | ||
with: | ||
# default depth is 1, but we need the parent refs | ||
fetch-depth: 2 | ||
- name: compute tag name | ||
shell: bash | ||
run: | | ||
branch=$([[ $(git log --pretty="%p" -n 1 | wc -w) -gt 1 ]] \ | ||
&& echo $(git log -n 1 --pretty="%s" | sed "s|.*Geoportail-Luxembourg/\(.*\)|\1|") \ | ||
|| git branch --show-current) | ||
echo $branch | ||
echo "AUTO_TAG=${branch}_CI_$(git log -n 1 --pretty=%h)" >> $GITHUB_ENV | ||
- name: tag ${{ github.head_ref }} | ||
run: | | ||
git tag ${{ env.AUTO_TAG }} | ||
git push --tags | ||
lux-package: | ||
# the combination (if always) + (needs tag-version) makes sure the lux-package job runs | ||
# after completion of the tag-version job. | ||
# In case of a tag push, the tag-version job is skipped but the lux-package job will run | ||
# In case of a closed PR, the tag-version job runs first, the lux-package job runs after completion | ||
if: ${{ always() }} | ||
needs: tag-version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
fetch-depth: 2 | ||
- name: compute tag name | ||
shell: bash | ||
run: | | ||
branch=$([[ $(git log --pretty="%p" -n 1 | wc -w) -gt 1 ]] \ | ||
&& echo $(git log -n 1 --pretty="%s" | sed "s|.*Geoportail-Luxembourg/\(.*\)|\1|") \ | ||
|| git branch --show-current) | ||
echo $branch | ||
echo "AUTO_TAG=${branch}_CI_$(git log -n 1 --pretty=%h)" >> $GITHUB_ENV | ||
- name: create release | ||
id: create_release | ||
uses: octokit/[email protected] | ||
|
@@ -16,11 +57,7 @@ jobs: | |
route: POST /repos/{owner}/{repo}/releases | ||
owner: 'Geoportail-Luxembourg' | ||
repo: 'luxembourg-geoportail' | ||
tag_name: ${{ github.ref }} | ||
- uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
tag_name: ${{ github.ref_type == 'tag' && github.ref || env.AUTO_TAG }} | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters