Skip to content

disable http basic for now #97

disable http basic for now

disable http basic for now #97

Workflow file for this run

name: push_docker
on:
push:
branches:
- "master"
tags:
- "master-*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
cleydyr/biblivre
tags: |
type=sha
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: "zulu"
java-version: "21"
cache: 'maven'
- name: Build with Maven
env:
NODE_ENV: production
BABEL_ENV: production
BUILD_PATH: ../resources/META-INF/resources/static/
PUBLIC_URL: /static/
run: mvn clean test package
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}