forked from DOI-USGS/ISIS3
-
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.
Release trigger fixes (DOI-USGS#5681)
* added release trigger * added release trigger * added release trigger * added release trigger * added release trigger * whatever * whatever * whatever
- Loading branch information
Showing
1 changed file
with
7 additions
and
4 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,26 +1,29 @@ | ||
name: Github to Gitlab CI - Run CodeBuild | ||
|
||
env: | ||
ISIS_VERSION: ${{ steps.vars.outputs.tag }} | ||
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | ||
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }} | ||
|
||
on: | ||
repository_dispatch: | ||
types: [test_result] | ||
release: | ||
types: [prereleased, released] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run script | ||
env: | ||
ISIS_VERSION: ${{ github.event.release.tag_name }} | ||
run: | | ||
git config --global user.name "Github_CI" | ||
git config --global user.email "project_14468_bot_3f7d8e1a392afd88ead5f3f3154e809d@noreply.gitlab.com" | ||
git clone https://isis-codebuild-ci:[email protected]/astrogeology/isis-codebuild-ci.git | ||
echo $ISIS_VERSION | ||
cd isis-codebuild-ci | ||
git checkout -b RELEASE_$ISIS_VERSION | ||
echo -e "\nenv: \n shell: bash \n variables: \n ISIS_VERSION: $ISIS_VERSION \n ANACONDA_API_TOKEN: $ANACONDA_TOKEN >> buildspec-release.yml | ||
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 |