Skip to content

Commit

Permalink
Point pageship to oursky.app
Browse files Browse the repository at this point in the history
Point pageship to `oursky.app`
  • Loading branch information
pkong-ds authored May 23, 2024
2 parents 9c02c69 + 612ca98 commit 76e6f5f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
on:
push:
branches:
- do-not-run-cd # dont run cd until pageship deployment with github OIDC token is resolved
- main

jobs:
cd:
Expand All @@ -29,9 +29,9 @@ jobs:
elif [[ "${{ github.ref_name }}" == "production" ]]; then
echo "ENV=production" >> $GITHUB_ENV
fi
- name: build html
- name: Build html
run: npm run build
- name: Deploy
env:
PAGESHIP_API: https://api.pages.pandawork.com
PAGESHIP_API: https://api.pages.oursky.app
run: make deploy
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
##################################

PYTHON_PREFIX := python3 -m
PAGESHIP_API := https://api.pages.pandawork.com
PAGESHIP_API := https://api.pages.oursky.app

ifeq ($(GITHUB_REF_NAME),production)
ENV ?= $(GITHUB_REF_NAME)
Expand Down
8 changes: 4 additions & 4 deletions pageship.production.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[app]
id = "mockuphone-prod-clone"
id = "mockuphone-prod"

team = [
# Allow GitHub Actions in your repo to deploy
Expand All @@ -15,9 +15,9 @@ team = [
[[app.sites]]
name = "main"

# [[app.domains]]
# domain = "mockuphone.com"
# site = "main"
[[app.domains]]
domain = "mockuphone.com"
site = "main"

[site]
public = "dist"
Expand Down
8 changes: 4 additions & 4 deletions pageship.staging.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[app]
id = "mockuphone-staging-clone"
id = "mockuphone-staging"

team = [
# Allow GitHub Actions in your repo to deploy
Expand All @@ -15,9 +15,9 @@ team = [
[[app.sites]]
name = "main"

# [[app.domains]]
# domain = "staging.mockuphone.com"
# site = "main"
[[app.domains]]
domain = "staging.mockuphone.com"
site = "main"

[site]
public = "dist"
Expand Down

0 comments on commit 76e6f5f

Please sign in to comment.