Test updated workflow #1
Workflow file for this run
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
name: Github to Gitlab CI - Run CodeBuild | |
env: | |
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | |
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }} | |
on: | |
release: | |
types: [prereleased, released] | |
push: | |
branches: | |
- '*.*.*_RC*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run script | |
env: | |
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" | |
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 | |
git commit -a -m "$ISIS_VERSION" | |
git push origin RELEASE_$ISIS_VERSION --force | |