Skip to content

versions:2018.0

versions:2018.0 #138

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: versions:2018.0
on:
push:
branches:
- 'main'
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string 1:00 weekly,Thursday,1:00 #m h d/m m d/w
- cron: '17 3 * * 4'
jobs:
versions:
runs-on: ubuntu-latest
container:
image: credocker/crecoding:2018.0
steps:
- uses: actions/checkout@v3
- name: Set ownership
run: |
# this is to fix GIT not liking owner of the checkout dir
chown -R $(id -u):$(id -g) $PWD
- name: cat version.txt
run: (cat /cre/versions.txt)
- name: cp version.txt
# run: (cp /cre/versions.txt cre/versions/versions_2018.txt)
run: (cut -f2,3 /cre/versions.txt > cre/versions/versions_2018.txt)
#
- name: set current year
run: (echo -n "CURRENT_YEAR=$(date +'%Y.0')" >> $GITHUB_ENV)
- name: set current version
run: (echo -n "CURRENT_VERSION=$CRE_VERSION" >> $GITHUB_ENV)
- name: cat requirements.txt
run: (cat /cre/requirements.txt.orig)
- name: cp requirements.txt
if: env.CURRENT_VERSION == env.CURRENT_YEAR
run: (cp /cre/requirements.txt.orig cre/versions/requirements_2018.txt)
#
- name: Submit changes
uses: EndBug/add-and-commit@v9
with:
# pull: '--rebase --autostash ...'
add: 'cre/versions/versions_2018.txt cre/versions/requirements_2018.txt'
tag_push: '--force'