MAgPIE coupling: use defaults from MAgPIE's default.cfg for list of MAgPIE outputs #461
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
on: | |
pull_request_target: | |
branches: | |
- develop | |
types: [ closed ] | |
name: auto-dev-version | |
jobs: | |
auto-dev-version: | |
if: github.repository == 'remindmodel/remind' && github.event.pull_request.merged == true | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.AUTO_DEV_VERSION_REMIND }} | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/[email protected] | |
with: | |
versionSpec: '5.x' | |
- name: Determine Version | |
id: gitversion | |
uses: gittools/actions/gitversion/[email protected] | |
with: | |
useConfigFile: true | |
configFilePath: .github/GitVersion.yml | |
- name: Update CITATION.cff and config/default.cfg with version and date | |
run: | | |
sed -i 's/^version:.*$/version: "${{ steps.gitversion.outputs.assemblySemVer }}"/' CITATION.cff | |
sed -i "s/^date-released:.*$/date-released: $(date --iso)/" CITATION.cff | |
sed -i 's/^cfg$model_version <-.*$/cfg$model_version <- "${{ steps.gitversion.outputs.assemblySemVer }}"/' config/default.cfg | |
- name: Commit changes to CITATION.cff | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: '["CITATION.cff", "config/default.cfg"]' | |
author_name: REMIND Research Software Engineering | |
author_email: [email protected] | |
message: 'Release development version ${{ steps.gitversion.outputs.assemblySemVer }}' | |
tag: 'v${{ steps.gitversion.outputs.assemblySemVer }}' | |
pathspec_error_handling: exitImmediately |