Skip to content

Commit

Permalink
Fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyscientist committed Oct 17, 2023
1 parent 979be3d commit fe17d2c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/on_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build & Test
on: [push]
# release:
# types: [published]
jobs:
#jobs:
# build-api:
# runs-on: ubuntu-latest
# outputs:
Expand All @@ -19,6 +19,11 @@ jobs:
# - name: 'Build API image'
# id: image
# run: |
# docker build backend/ \
# --tag ghcr.io/${GITHUB_REPOSITORY,,}/ui:${GITHUB_REF_NAME,,} \
# --tag ghcr.io/${GITHUB_REPOSITORY,,}/ui:latest
# docker push ghcr.io/${GITHUB_REPOSITORY,,}/ui:${GITHUB_REF_NAME,,}
# docker push ghcr.io/${GITHUB_REPOSITORY,,}/ui:latest
# echo "name=ghcr.io/${GITHUB_REPOSITORY,,}/api:${GITHUB_REF_NAME,,}" >> $GITHUB_OUTPUT
# build-ui:
# runs-on: ubuntu-latest
Expand All @@ -38,6 +43,7 @@ jobs:
# --tag ghcr.io/${GITHUB_REPOSITORY,,}/ui:latest
# docker push ghcr.io/${GITHUB_REPOSITORY,,}/ui:${GITHUB_REF_NAME,,}
# docker push ghcr.io/${GITHUB_REPOSITORY,,}/ui:latest
jobs:
test:
needs: build-api
runs-on: ubuntu-latest
Expand Down

0 comments on commit fe17d2c

Please sign in to comment.