Yarn upgrade all (#35)

* Upgrade all yarn

* Only publish containers on main
This commit is contained in:
Dave Gallant
2023-08-19 09:57:29 -04:00
committed by GitHub
parent 9615750d3e
commit cf22109188
5 changed files with 2880 additions and 3020 deletions

View File

@@ -38,12 +38,12 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push to Packages
- name: Build / push
uses: docker/build-push-action@v4
with:
context: backend
file: ./backend/Dockerfile
push: true
push: ${{ github.ref == 'refs/heads/main' }}
tags: ${{ steps.prep.outputs.tags }}
publish-frontend:
@@ -78,10 +78,10 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push to Packages
- name: Build / push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
push: ${{ github.ref == 'refs/heads/main' }}
tags: ${{ steps.prep.outputs.tags }}