Fixing slugify issue

This commit is contained in:
David Négrier 2020-04-13 18:15:27 +02:00
parent efccdcbb06
commit 62e28bed10

View file

@ -18,6 +18,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
# Create a slugified value of the branch
- uses: rlespinasse/github-slug-action@master
- name: "Build and push front image"
uses: docker/build-push-action@v1
with:
@ -26,7 +30,7 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: thecodingmachine/workadventure-front
tag_with_ref: true
tags: ${{ env.GITHUB_REF_SLUG }}
add_git_labels: true
build-back:
@ -38,6 +42,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
# Create a slugified value of the branch
- uses: rlespinasse/github-slug-action@master
- name: "Build and push back image"
uses: docker/build-push-action@v1
with:
@ -46,7 +53,7 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: thecodingmachine/workadventure-back
tag_with_ref: true
tags: ${{ env.GITHUB_REF_SLUG }}
add_git_labels: true
deeploy: