Refactoring workflow (#29) #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Apply latest configuration to Fleet' | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: # allows manual triggering | |
defaults: | |
run: | |
shell: bash | |
# Limit permissions of GITHUB_TOKEN. | |
permissions: | |
contents: read | |
jobs: | |
fleet-gitops: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout GitOps repository | |
uses: actions/checkout@v4 | |
- name: Apply latest configuration to Fleet | |
uses: ./.github/gitops-action | |
# Add FLEET_URL and FLEET_API_TOKEN to the repository secrets. | |
# In addition, specify or add secrets for all the environment variables that are mentioned in the global/team YAML files. | |
env: | |
FLEET_URL: ${{ secrets.FLEET_URL }} | |
FLEET_API_TOKEN: ${{ secrets.FLEET_API_TOKEN }} | |
FLEET_SSO_METADATA: ${{ secrets.FLEET_SSO_METADATA }} | |
FLEET_GLOBAL_ENROLL_SECRET: ${{ secrets.FLEET_GLOBAL_ENROLL_SECRET }} | |
FLEET_WORKSTATIONS_ENROLL_SECRET: ${{ secrets.FLEET_WORKSTATIONS_ENROLL_SECRET }} | |
FLEET_WORKSTATIONS_CANARY_ENROLL_SECRET: ${{ secrets.FLEET_WORKSTATIONS_CANARY_ENROLL_SECRET }} |