There was an error while loading. Please reload this page.
1 parent 20ce84c commit 7412701Copy full SHA for 7412701
1 file changed
.github/workflows/jrnm-redeploy.yml
@@ -8,16 +8,28 @@ on:
8
permissions:
9
contents: read
10
11
+concurrency:
12
+ group: jrnm-redeploy-main
13
+ cancel-in-progress: false
14
+
15
jobs:
16
redeploy:
17
runs-on: ubuntu-latest
18
+ timeout-minutes: 5
19
20
steps:
21
- uses: actions/checkout@v4
22
with:
23
fetch-depth: 0
24
25
+ - name: Validate JustRunMyApp git URL
26
+ run: |
27
+ if [ -z "${{ secrets.JRNM_GIT_URL }}" ]; then
28
+ echo "JRNM_GIT_URL secret is missing"
29
+ exit 1
30
+ fi
31
32
- name: Push to JustRunMyApp remote
33
run: |
34
git remote add jrnm "${{ secrets.JRNM_GIT_URL }}"
- git push jrnm HEAD:deploy --force
35
+ git push jrnm HEAD:deploy --force
0 commit comments