Skip to content

Commit

Permalink
Change landscape cli command to lfx_landscape (#69)
Browse files Browse the repository at this point in the history
Signed-off-by: John Mertic <[email protected]>
  • Loading branch information
jmertic authored Nov 14, 2024
1 parent 120f5e5 commit c4d293e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,23 @@ runs:
- name: Build members from LFX
working-directory: ./landscape-tools
shell: bash
run: poetry run landscape build_members -c ../landscape/config.yml
run: poetry run lfx_landscape build_members -c ../landscape/config.yml
env:
GITHUB_TOKEN: ${{ env.token }}
GH_TOKEN: ${{ env.token }}
- name: Rebuild projects from LFX and other sources
if: ${{ inputs.project_processing == 'rebuild' }}
working-directory: ./landscape-tools
shell: bash
run: poetry run landscape build_projects -c ../landscape/config.yml
run: poetry run lfx_landscape build_projects -c ../landscape/config.yml
env:
GITHUB_TOKEN: ${{ env.token }}
GH_TOKEN: ${{ env.token }}
- name: Sync projects from LFX and other sources
if: ${{ inputs.project_processing == 'sync' }}
working-directory: ./landscape-tools
shell: bash
run: poetry run landscape sync_projects -c ../landscape/config.yml
run: poetry run lfx_landscape sync_projects -c ../landscape/config.yml
env:
GITHUB_TOKEN: ${{ env.token }}
GH_TOKEN: ${{ env.token }}
Expand Down

0 comments on commit c4d293e

Please sign in to comment.