Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
vicziani committed Sep 10, 2021
1 parent 7ae88ae commit 1edfca2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ jobs:
uses: docker/setup-buildx-action@v1
- name: Get version
run: |
VERSION=$( mvn help:evaluate -Dexpression=project.version -q -DforceStdout )
echo "::set-output name=version::$VERSION"
VERSION=$( mvn help:evaluate -Dexpression=project.version -q -DforceStdout )
echo "::set-output name=version::$VERSION"
id: get_version
- name: Build and push
uses: docker/build-push-action@v2
with:
context: ./
file: ./Dockerfile
push: true
tags:
- ${{ secrets.DOCKER_HUB_USERNAME }}/lwsapp:latest
- ${{ secrets.DOCKER_HUB_USERNAME }}/lwsapp:${{ steps.get_version.outputs.version }}
tags: |
${{ secrets.DOCKER_HUB_USERNAME }}/lwsapp:latest
${{ secrets.DOCKER_HUB_USERNAME }}/lwsapp:${{ steps.get_version.outputs.version }}

0 comments on commit 1edfca2

Please sign in to comment.