add version in back and front #16 / client can ignore global PK #17 / #18 email is now optional

This commit is contained in:
vx3r 2020-02-25 17:57:41 +09:00
parent d69c1696c5
commit 8985021065
1 changed files with 5 additions and 1 deletions

View File

@ -17,6 +17,10 @@ jobs:
-
name: Checkout
uses: actions/checkout@v1
-
name: Set sha_short
id: vars
run: echo ::set-output name=sha_short::$(git rev-parse --short HEAD)
-
name: Build Docker Images Only
if: github.event_name == 'pull_request'
@ -39,4 +43,4 @@ jobs:
imageName: ${{ env.DOCKER_IMAGE_NAME }}
dockerHubUser: ${{ secrets.DOCKER_LOGIN_USERNAME }}
dockerHubPassword: ${{ secrets.DOCKER_LOGIN_PASSWORD }}
buildArg: COMMIT=${GITHUB_SHA::8}
buildArg: COMMIT=${{ steps.vars.outputs.sha_short }}