Merge pull request #8 from Bayer-Group/m-lueb-patch-1 #6
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
# Compress and deploy example data | |
name: Example Data | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "example-data" | |
cancel-in-progress: false | |
jobs: | |
deploy-example-data: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
# Prepare the data | |
- name: Prepare the data | |
run: | | |
cp -r src/mocca2/example_data/data _temp | |
# Configure Git, Important for actions to commit | |
- name: Configure Git | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Jan Oboril" | |
# Check if branch exists and create or clean it | |
- name: Prepare Branch | |
run: | | |
git checkout -b example-data | |
git pull origin example-data --rebase|| true | |
# Add the compressed data file | |
- name: Add Compressed Data and Commit | |
run: | | |
git rm -rf . | |
mv _temp/* . | |
rm -rf _temp | |
git add * | |
git commit -m "Added compressed example data" || true | |
# Push the branch to remote | |
- name: Push Changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: example-data |