-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (42 loc) · 1.76 KB
/
deploy.yml
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
# Deploy branch is followed by Posit Connect
name: Update Requirements and Manifest on Deploy Branch
on:
push:
branches:
- main # Trigger when pushing to main
jobs:
update-branches:
env:
UV_SYSTEM_PYTHON: true
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v4
- name: Setup uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Read deploy mode from text file
run: |
MODE=$(cat deploy_mode.txt)
echo "MODE=${MODE}" >> $GITHUB_ENV
- name: Print the deployment mode
run: echo "The deployment mode is ${{ env.MODE }}"
- name: Generate requirements.txt with `uv`
run: uv export --no-hashes -o requirements.txt
- name: Generate rsconnect-python manifest.json
run: uvx --from rsconnect-python rsconnect write-manifest shiny . --entrypoint shinylims.app:app
- name: Commit and push changes based on mode
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add requirements.txt manifest.json
git commit -m "Update requirements and manifest" || echo "No changes to commit"
if [[ "${{ env.MODE }}" == "test" ]]; then
git push origin --force HEAD:test_deploy # Push to test branch
elif [[ "${{ env.MODE }}" == "prod" ]]; then
git push origin --force HEAD:deploy # Push to deploy branch
elif [[ "${{ env.MODE }}" == "both" ]]; then
git push origin --force HEAD:test_deploy # Push to test branch
git push origin --force HEAD:deploy # Push to deploy branch
fi