Skip to content

Commit

Permalink
Adds CI trigger to deploy RC branches (DOI-USGS#5682)
Browse files Browse the repository at this point in the history
* added release trigger

* added release trigger

* added release trigger

* added release trigger

* added release trigger

* whatever

* whatever

* whatever

* added rc workflow

* appended release to also work on RCs

* added branchtrigger

* added branchtrigger

* added branchtrigger
  • Loading branch information
Kelvinrr authored Nov 25, 2024
1 parent 5c0b388 commit a8bb044
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/gitlab-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ env:
on:
release:
types: [prereleased, released]

push:
branches:
- '*.*.*_RC*'
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -16,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- name: Run script
env:
ISIS_VERSION: ${{ github.event.release.tag_name }}
ISIS_VERSION: ${{ github.event.release.tag_name || github.ref_name }}
run: |
git config --global user.name "Github_CI"
git config --global user.email "project_14468_bot_3f7d8e1a392afd88ead5f3f3154e809d@noreply.gitlab.com"
Expand All @@ -27,3 +29,4 @@ jobs:
echo -e "\nenv: \n shell: bash \n variables: \n ISIS_VERSION: $ISIS_VERSION \n ANACONDA_API_TOKEN: $ANACONDA_TOKEN" >> buildspec-release.yml
git commit -a -m "$ISIS_VERSION"
git push origin RELEASE_$ISIS_VERSION --force

0 comments on commit a8bb044

Please sign in to comment.