mirror of
https://git.witchcraft.systems/scientific-witchery/pds-dash.git
synced 2025-06-07 23:44:04 +10:00
CI/CD draft
This commit is contained in:
parent
36d286fba8
commit
0c8eb83f5b
1 changed files with 18 additions and 1 deletions
|
@ -5,6 +5,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
- astra/ci
|
||||
- astra/overrides
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
|
@ -12,9 +13,25 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
- name: Checkout main repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Checkout config repo
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: scientific-witchery/pds-dash-overrides
|
||||
token: ${{ secrets.OVERRIDES_TOKEN }}
|
||||
|
||||
- name: print local filesystem
|
||||
run: |
|
||||
echo "Current directory: $(pwd)"
|
||||
echo "Files in current directory:"
|
||||
ls -la
|
||||
|
||||
- name: fail (intentionally)
|
||||
run: |
|
||||
echo "This is an intentional failure to test the workflow."
|
||||
exit 1
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue