Skip to content

Commit

Permalink
DEVX-911
Browse files Browse the repository at this point in the history
Testing production flag
  • Loading branch information
sheaphillips committed Nov 30, 2023
1 parent baa5ebe commit dc34b8b
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@ jobs:

name: A job to build and publish techdocs content
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build TechDocs
uses: ./ # Uses the action in the root directory
id: build_and_publish
with:
publish: 'true'
bucket_name: ${{ secrets.TECHDOCS_S3_BUCKET_NAME }}
s3_access_key_id: ${{ secrets.TECHDOCS_AWS_ACCESS_KEY_ID }}
s3_secret_access_key: ${{ secrets.TECHDOCS_AWS_SECRET_ACCESS_KEY }}
s3_region: ${{ secrets.TECHDOCS_AWS_REGION }}
s3_endpoint: ${{ secrets.TECHDOCS_AWS_ENDPOINT }}
- name: Checkout
uses: actions/checkout@v4
- name: Build TechDocs
uses: ./ # Uses the action in the root directory
id: build_and_publish
with:
publish: 'true'
production: 'true'
bucket_name: ${{ secrets.TECHDOCS_S3_BUCKET_NAME }}
s3_access_key_id: ${{ secrets.TECHDOCS_AWS_ACCESS_KEY_ID }}
s3_secret_access_key: ${{ secrets.TECHDOCS_AWS_SECRET_ACCESS_KEY }}
s3_region: ${{ secrets.TECHDOCS_AWS_REGION }}
s3_endpoint: ${{ secrets.TECHDOCS_AWS_ENDPOINT }}

0 comments on commit dc34b8b

Please sign in to comment.