From 0c8eb83f5b5ca2e4d36651dbfbead613667d2d81 Mon Sep 17 00:00:00 2001 From: Ari Date: Thu, 29 May 2025 04:17:03 -0400 Subject: [PATCH] CI/CD draft --- .forgejo/workflows/deploy.yaml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index c6a05d0..9eafcfb 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -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: