Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrtalbot committed Dec 3, 2024
1 parent 28ba807 commit 3c1b50f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,37 +23,37 @@ jobs:
id: aws_run
# Use repository secrets for sensitive fields
with:
access_token: ${{ secrets.STAGING_TOWER_ACCESS_TOKEN }}
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }}
pipeline: hello_world
workspace_id: ${{ secrets.AWS_TOWER_WORKSPACE_ID }}
compute_env: ${{ secrets.AWS_TOWER_COMPUTE_ENV }}
run_name: ${{ github.job }}_${{ github.sha }}
workdir: ${{ secrets.AWS_S3_BUCKET }}/work/${{ github.sha }}
api_endpoint: ${{ secrets.TOWER_ENDPOINT }}
api_endpoint: ${{ secrets.PLATFORM_ENDPOINT }}

- uses: ./
id: azure_run
# Use repository secrets for sensitive fields
with:
access_token: ${{ secrets.STAGING_TOWER_ACCESS_TOKEN }}
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }}
pipeline: hello-azure
workspace_id: ${{ secrets.AZURE_TOWER_WORKSPACE_ID }}
compute_env: ${{ secrets.AZURE_TOWER_COMPUTE_ENV }}
run_name: ${{ github.job }}_${{ github.sha }}
workdir: ${{ secrets.AZURE_WORK_CONTAINER }}/work/${{ github.sha }}
api_endpoint: ${{ secrets.TOWER_ENDPOINT }}
api_endpoint: ${{ secrets.PLATFORM_ENDPOINT }}

- uses: ./
id: gcp_run
# Use repository secrets for sensitive fields
with:
access_token: ${{ secrets.STAGING_TOWER_ACCESS_TOKEN }}
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }}
pipeline: hello_gcp
workspace_id: ${{ secrets.GCP_TOWER_WORKSPACE_ID }}
compute_env: ${{ secrets.GCP_TOWER_COMPUTE_ENV }}
run_name: ${{ github.job }}_${{ github.sha }}
workdir: ${{ secrets.GCP_BUCKET }}/work/${{ github.sha }}
api_endpoint: ${{ secrets.TOWER_ENDPOINT }}
api_endpoint: ${{ secrets.PLATFORM_ENDPOINT }}

- name: Comment PR
if: github.event_name == 'pull_request'
Expand Down

0 comments on commit 3c1b50f

Please sign in to comment.