-
-
Notifications
You must be signed in to change notification settings - Fork 6
61 lines (52 loc) · 2.03 KB
/
Copy pathrelease.yaml
File metadata and controls
61 lines (52 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: "Release Dev Container Templates & Generate Documentation"
on:
workflow_dispatch:
jobs:
deploy:
# if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: "Set namespace"
id: set-namespace
run: |
if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
echo "namespace=lucernae/devcontainer-nix" >> $GITHUB_OUTPUT
elif [[ "${{ github.ref }}" == "refs/heads/develop" ]]; then
echo "namespace=lucernae/devcontainer-nix/develop" >> $GITHUB_OUTPUT
else
echo "namespace=" >> $GITHUB_OUTPUT
fi
- name: "Publish Templates"
if: ${{ steps.set-namespace.outputs.namespace != '' }}
uses: devcontainers/action@v1
with:
publish-templates: "true"
base-path-to-templates: "./templates/src"
generate-docs: "true"
templates-namespace: "${{ steps.set-namespace.outputs.namespace }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create PR for Documentation
if: ${{ steps.set-namespace.outputs.namespace != '' }}
id: push_image_info
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -e
echo "Start."
# Configure git and Push updates
git config --global user.email github-actions@github.com
git config --global user.name github-actions
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