vertx-amqp-client (4.x) #168
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (c) 2018-2019 The original author or authors | |
# | |
# All rights reserved. This program and the accompanying materials | |
# are made available under the terms of the Eclipse Public License v1.0 | |
# and Apache License v2.0 which accompanies this distribution. | |
# | |
# The Eclipse Public License is available at | |
# http://www.eclipse.org/legal/epl-v10.html | |
# | |
# The Apache License v2.0 is available at | |
# http://www.opensource.org/licenses/apache2.0.php | |
# | |
# You may elect to redistribute this code under either of these licenses. | |
# | |
name: vertx-amqp-client (4.x) | |
on: | |
schedule: | |
- cron: '0 4 * * *' | |
jobs: | |
CI: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
jdk: 8 | |
- os: ubuntu-latest | |
jdk: 17 | |
uses: ./.github/workflows/ci.yml | |
with: | |
branch: 4.x | |
jdk: ${{ matrix.jdk }} | |
os: ${{ matrix.os }} | |
secrets: inherit | |
Deploy: | |
if: ${{ github.repository_owner == 'vert-x3' && (github.event_name == 'push' || github.event_name == 'schedule') }} | |
needs: CI | |
uses: ./.github/workflows/deploy.yml | |
with: | |
branch: 4.x | |
jdk: 8 | |
secrets: inherit |