Build #83
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
--- | |
name: Build | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: | |
- 'java-11-openjdk' | |
- 'java-11-openjdk-devel' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: make BUILDARGS="--build-arg JAVAVER=${{ matrix.java }} --build-arg USER_ID=$UID" | |
#- name: Test | |
# run: ./runtest.sh | |
upload: | |
needs: build | |
if: startsWith(github.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
env: | |
name: openmicroscopy/devagent | |
steps: | |
- name: Docker metadata | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ${{ env.name }} | |
- name: Get prefix | |
id: getprefix | |
run: | | |
if [ ! -z ${{ env.name }} ]; then | |
echo "prefix=${{ env.name }}:" >> $GITHUB_OUTPUT | |
else | |
echo "prefix=${{ github.repository }}:" >> $GITHUB_OUTPUT | |
fi | |
- name: Get other tags | |
id: gettags | |
uses: jupyterhub/action-major-minor-tag-calculator@v3 | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
prefix: "${{ steps.getprefix.outputs.prefix }}" | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Push to Docker Hub | |
uses: docker/build-push-action@v5 | |
with: | |
tags: ${{ join(fromJson(steps.gettags.outputs.tags)) }} | |
labels: ${{ steps.meta.outputs.labels }} | |
push: true |