Skip to content

Build

Build #138

Workflow file for this run

name: Build
on:
pull_request:
branches: ['**']
push:
branches: ['**']
tags: [v*]
jobs:
build:
strategy:
matrix:
remoting_tag:
- 4.13.2-1-jdk11
- 4.13.3-1-jdk17
- 3355.v388858a_47b_33-5-jdk21
runs-on: ubuntu-latest
steps:
- name: Build and Push Docker Image
uses: Dwolla/jenkins-agents-workflow/.github/actions/build@main
with:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
BASE_TAG: ${{ matrix.remoting_tag }}
TAG_NAME: JENKINS_REMOTING_TAG
IMAGE_NAME: dwolla/jenkins-agent-core
build-complete:
needs: build
runs-on: ubuntu-latest
steps:
- run: echo "The build completed successfully"