Set api url for fly.io #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and push nginx to GHCR, Deploy to Pages | |
on: | |
push: | |
branches-ignore: | |
- wip/* | |
jobs: | |
build-push-ghcr: | |
uses: ./.github/workflows/express-ghcr.yml | |
with: | |
tag: ${{ github.ref_name }} | |
deploy-pages: | |
needs: build-push-ghcr | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
steps: | |
- name: Export static files | |
run: docker cp $(docker create ghcr.io/sehyun-hwang/imshow-nginx):/var/www/html /tmp/pages | |
shell: sh | |
- name: Set API URLs | |
working-directory: /tmp/pages | |
run: > | |
sed -i 's;<script src="./index.js"; | |
<script>\n | |
var PUB_URL = "https://imshow-express.fly.dev"\;\n | |
var SUB_URL = "https://imshow-nginx.fly.dev/ws/imshow"\n | |
</script>\n | |
<script src="./index.js";' | |
index.html | |
shell: sh | |
- if: ${{ !env.ACT }} | |
name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Upload Pages artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: /tmp/pages | |
- if: ${{ !env.ACT }} | |
name: Deploy Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |