+18
-1
.forgejo/workflows/deploy.yaml
+18
-1
.forgejo/workflows/deploy.yaml
···
5
5
branches:
6
6
- main
7
7
- astra/ci
8
+
- astra/overrides
8
9
9
10
jobs:
10
11
deploy:
···
12
13
runs-on: ubuntu-latest
13
14
14
15
steps:
15
-
- name: Checkout repo
16
+
- name: Checkout main repo
16
17
uses: actions/checkout@v4
17
18
19
+
- name: Checkout config repo
20
+
uses: actions/checkout@v4
21
+
with:
22
+
repository: scientific-witchery/pds-dash-overrides
23
+
token: ${{ secrets.OVERRIDES_TOKEN }}
24
+
25
+
- name: print local filesystem
26
+
run: |
27
+
echo "Current directory: $(pwd)"
28
+
echo "Files in current directory:"
29
+
ls -la
30
+
31
+
- name: fail (intentionally)
32
+
run: |
33
+
echo "This is an intentional failure to test the workflow."
34
+
exit 1
18
35
- name: Setup Node.js
19
36
uses: actions/setup-node@v3
20
37
with: