Skip to content

Commit

Permalink
fix: rename from website to playground
Browse files Browse the repository at this point in the history
  • Loading branch information
Hagith committed Sep 6, 2024
1 parent 0be4c92 commit 001d10c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:
id: meta
with:
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/website
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/playground
- uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build package/website
- name: Build package/playground
uses: docker/build-push-action@v5
with:
context: .
file: ./packages/website/Dockerfile
file: ./packages/playground/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./packages/website/dist
path: ./packages/playground/dist

deploy:
needs: build
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.7'

services:
website:
playground:
build:
context: .
dockerfile: packages/playground/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@coldrun/monorepo-typescript-website",
"name": "@coldrun/monorepo-typescript-playground",
"private": true,
"version": "0.0.0",
"type": "module",
Expand Down

0 comments on commit 001d10c

Please sign in to comment.