Build #171
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: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: ./build.sh | |
upload: | |
needs: build | |
if: startsWith(github.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
env: | |
name: openmicroscopy/omero-web | |
steps: | |
- name: Get other tags | |
id: gettags | |
uses: jupyterhub/[email protected] | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
prefix: "${{ env.name}}:" | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v3 | |
with: | |
images: ${{ env.name }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Push to Docker Hub | |
uses: docker/build-push-action@v2 | |
with: | |
tags: ${{ join(fromJson(steps.gettags.outputs.tags)) }} | |
labels: ${{ steps.meta.outputs.labels }} | |
push: true | |
uploadstandalone: | |
needs: upload | |
if: startsWith(github.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
env: | |
name: openmicroscopy/omero-web-standalone | |
nameParent: openmicroscopy/omero-web:latest | |
folder: standalone | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get other tags | |
id: gettags | |
uses: jupyterhub/[email protected] | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
prefix: "${{ env.name }}:" | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Push to Docker Hub | |
uses: docker/build-push-action@v2 | |
with: | |
build-args: | | |
"PARENT_IMAGE=${{ env.nameParent }}" | |
context: ${{ env.folder }} | |
tags: ${{ join(fromJson(steps.gettags.outputs.tags)) }} | |
push: true |