Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
norbusan committed Jan 23, 2024
1 parent 704990f commit a37f34c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,23 +137,23 @@ jobs:
path: 'repo'
- name: build freebsd
uses: vmactions/freebsd-vm@v1
if: matrix.os == 'freebsd'
if: ${{ matrix.os == 'freebsd' && (matrix.ci_build || matrix.release_build) }}
with:
usesh: true
run: |
cd repo
sh .github/scripts/build-tl.sh ${{ matrix.arch }}-${{ matrix.os }}
- name: build netbsd
uses: vmactions/netbsd-vm@v1
if: matrix.os == 'netbsd'
if: ${{ matrix.os == 'netbsd' && (matrix.ci_build || matrix.release_build) }}
with:
usesh: true
run: |
cd repo
sh .github/scripts/build-tl.sh ${{ matrix.arch }}-${{ matrix.os }}
- name: build solaris
uses: vmactions/solaris-vm@v1
if: matrix.os == 'solaris'
if: ${{ matrix.os == 'solaris' && (matrix.ci_build || matrix.release_build) }}
with:
usesh: true
run: |
Expand Down

0 comments on commit a37f34c

Please sign in to comment.