Skip to content

Commit

Permalink
build: use reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ReuDa committed Dec 6, 2023
1 parent aa5c36a commit 3f165bd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/reusable-extension-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ jobs:
steps:
- name: test
run: echo "build_linux_packages is ${{ inputs.build_linux_packages }}"
- name: test2
if: ${{ inputs.build_linux_packages == 'true' }}
run: echo "build_linux_packages is 'true'"
- name: test3
if: ${{ inputs.build_linux_packages }}
run: echo "build_linux_packages is true"

- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 3f165bd

Please sign in to comment.