diff options
| author | Dan Engelbrecht <[email protected]> | 2022-05-26 00:39:11 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-06-02 00:35:51 +0200 |
| commit | 6b0c71806d9e0559880855591d338c70dca19fbf (patch) | |
| tree | d96e210942c336baac9c957bc8e8bf503e464cde /.github/workflows/validate.yml | |
| parent | show path (diff) | |
| download | zen-6b0c71806d9e0559880855591d338c70dca19fbf.tar.xz zen-6b0c71806d9e0559880855591d338c70dca19fbf.zip | |
go back to skipping windows bundle on release
Diffstat (limited to '.github/workflows/validate.yml')
| -rw-r--r-- | .github/workflows/validate.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 9c163a268..59354161f 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -2,7 +2,7 @@ name: Validate on: pull_request: - types: [opened, reopened] #, synchronize] + types: [opened, reopened, synchronize] branches: [ main ] jobs: @@ -35,7 +35,8 @@ jobs: VCPKG_VERSION: 2022.03.10 steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 @@ -64,7 +65,7 @@ jobs: env: VCPKG_ROOT: ${{ github.workspace }}/.vcpkg - - name: upload zenserver-linux + - name: Upload zenserver-linux if: ${{ github.ref_name == 'main'}} uses: actions/upload-artifact@v3 with: @@ -98,7 +99,8 @@ jobs: VCPKG_VERSION: 2022.03.10 steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 - name: Set up GCC 11 uses: egor-tensin/setup-gcc@v1 @@ -132,7 +134,7 @@ jobs: env: VCPKG_ROOT: ${{ github.workspace }}/.vcpkg - - name: upload zenserver-win64 + - name: Upload zenserver-win64 if: ${{ github.ref_name == 'main'}} uses: actions/upload-artifact@v3 with: |