Skip to content

Commit

Permalink
Adds space to trigger workflows on latest update
Browse files Browse the repository at this point in the history
  • Loading branch information
jdfiguer authored and jdfiguer committed May 29, 2024
1 parent 9a8f34f commit 8c94e7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-deploy-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,21 +60,21 @@ jobs:
- name: Get cache if supplied
id: cache-src-bld
if: ${{ inputs.cache-key != '' }}
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /home/runner/work/${{ github.event.repository.name }}/${{ github.event.repository.name }}/*
key: ${{ inputs.cache-key }}

- name: Checkout Bundle Main
if: ${{ inputs.app-name != '' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
repository: nasa/cFS

- name: Checkout Repo
if: ${{ inputs.app-name != '' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: apps/${{ inputs.app-name }}

Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
path: ./deploy/${{ matrix.target }}.pdf

- name: Deploy to GitHub
if: ${{ inputs.deploy == true }}
if: ${{ inputs.deploy == true }}
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
build-cfs-documentation:
needs: checkout-and-cache
name: Build cFS documents
uses: nasa/cFS/.github/workflows/build-deploy-doc.yml@main
uses: chillfig/cFS/.github/workflows/build-deploy-doc.yml@testNode20
with:
target: "[\"cfe-usersguide\", \"osal-apiguide\", \"mission-doc\"]"
cache-key: cfs-doc-${{ github.run_number }}
Expand Down

0 comments on commit 8c94e7d

Please sign in to comment.