remove 110 tags (#933) #14
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: Open-CE Merge Job | |
on: | |
push: | |
branches: | |
- 'main' # matches the main branch | |
- 'open-ce-r*' # matches every release branch | |
jobs: | |
release_creation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: '0' | |
- uses: conda-incubator/[email protected] | |
with: | |
auto-update-conda: true | |
python-version: "3.10" | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
conda install -y python=3.10 conda-build=3.22 | |
- name: Clone build tools | |
shell: bash -l {0} | |
run: | | |
git clone https://github.com/open-ce/open-ce-builder.git \ | |
./open-ce-builder | |
pip install ./open-ce-builder | |
- name: Perform Release Creation | |
shell: bash -l {0} | |
env: | |
API_TOKEN: ${{ secrets.API_KEY }} | |
run: | | |
git config --global user.name "Github Action" | |
git config --global user.email "[email protected]" | |
python open-ce-builder/git_tools/create_opence_release.py \ | |
--pat ${API_TOKEN} \ | |
--branch "HEAD~" \ | |
--not_dry_run |