Skip to content

DO NOT MERGE ME!

DO NOT MERGE ME! #21

Workflow file for this run

name: "Release Dev Container Templates & Generate Documentation"
on:
workflow_dispatch:
push:
branches:
- master
paths:
- 'src/**'
- 'startupscript/**'
- '.github/workflows/release.yml'
jobs:
deploy:
if: ${{ github.ref == 'refs/heads/master' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Copy startup scripts"
run: |
for dir in src/*/; do
if [[ -d "${dir}" ]]; then
cp -r startupscript "${dir}"
fi
done
- name: "Publish Templates"
uses: devcontainers/action@v1
with:
publish-templates: "true"
base-path-to-templates: "./src"
generate-docs: "true"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create PR for Documentation
id: push_image_info
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -o errexit
echo "Start."
# Configure git and Push updates
git config --global user.email github-actions[bot]@users.noreply.github.com
git config --global user.name github-actions[bot]
git config pull.rebase false
branch=automated-documentation-update-$GITHUB_RUN_ID
git checkout -b $branch
message='Automated documentation update'
# Add / update and commit
git add */**/README.md
git commit -m 'Automated documentation update [skip ci]' || export NO_UPDATES=true
# Push
if [[ "${NO_UPDATES}" != "true" ]] ; then
git push origin "${branch}"
gh pr create --title "${message}" --body "${message}"
fi