Browse Source

Fix build.

pull/971/head
Sebastian 4 years ago
parent
commit
8a6ed7b00d
  1. 7
      .github/workflows/release.yml

7
.github/workflows/release.yml

@ -116,11 +116,14 @@ jobs:
docker tag squidex-local squidex/squidex:${{ steps.version.outputs._0 }}
- name: Publish - Push Tags
if: env.STABLE_VERSION == 'true'
run: |
docker tag squidex-local squidex/squidex:latest
docker tag squidex-local squidex/squidex:${{ env.GITHUB_REF_SLUG }}
docker tag squidex-local squidex/squidex:${{ steps.version.outputs._0 }}
- name: Publish - Push Latest
if: env.STABLE_VERSION == 'true'
run: |
docker tag squidex-local squidex/squidex:latest
- name: Release - Make directories
run: sudo mkdir /build /release

Loading…
Cancel
Save