CI/CD draft

This commit is contained in:
Ari 2025-05-29 04:17:03 -04:00
parent 36d286fba8
commit 0c8eb83f5b
No known key found for this signature in database

View file

@ -5,6 +5,7 @@ on:
branches: branches:
- main - main
- astra/ci - astra/ci
- astra/overrides
jobs: jobs:
deploy: deploy:
@ -12,9 +13,25 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout repo - name: Checkout main repo
uses: actions/checkout@v4 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 - name: Setup Node.js
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with: