diff --git a/.github/workflows/docker-build-static.yml b/.github/workflows/docker-build-static.yml index c05d106..84435da 100644 --- a/.github/workflows/docker-build-static.yml +++ b/.github/workflows/docker-build-static.yml @@ -84,7 +84,7 @@ jobs: build-ui: runs-on: ubuntu-latest needs: pre_job - if: ${{ needs.pre_job.outputs.should_skip != 'true' }} + if: ${{ needs.pre_job.outputs.should_skip != 'true' || github.event_name == 'release' }} container: image: nitnelave/rust-dev:latest steps: @@ -123,7 +123,7 @@ jobs: build-bin: runs-on: ubuntu-latest needs: pre_job - if: ${{ needs.pre_job.outputs.should_skip != 'true' }} + if: ${{ needs.pre_job.outputs.should_skip != 'true' || github.event_name == 'release' }} strategy: matrix: target: [armv7-unknown-linux-gnueabihf, aarch64-unknown-linux-musl, x86_64-unknown-linux-musl] @@ -269,7 +269,7 @@ jobs: --health-timeout 5s --health-retries 5 --name postgresql - + mariadb: image: mariadb:latest ports: