Update workflow
This commit is contained in:
parent
aa1eaccf5f
commit
e4d03db05d
2 changed files with 70 additions and 50 deletions
23
.github/workflows/main.yaml
vendored
23
.github/workflows/main.yaml
vendored
|
|
@ -4,8 +4,29 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
jobs:
|
jobs:
|
||||||
|
build-error-pages:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout current branch with lfs
|
||||||
|
uses: actions/checkout@master
|
||||||
|
with:
|
||||||
|
lfs: true
|
||||||
|
|
||||||
|
- name: Setup auth tokens
|
||||||
|
run: |
|
||||||
|
# Docker Hub
|
||||||
|
docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Build and push error pages
|
||||||
|
run: |
|
||||||
|
docker build . -t schmelczera/declared-error-pages
|
||||||
|
docker push schmelczera/declared-error-pages
|
||||||
|
working-directory: error-pages
|
||||||
|
|
||||||
build-ingress:
|
build-ingress:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- build-error-pages
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout current branch with lfs
|
- name: Checkout current branch with lfs
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@master
|
||||||
|
|
@ -25,6 +46,8 @@ jobs:
|
||||||
|
|
||||||
build-frontend:
|
build-frontend:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- build-error-pages
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout current branch with lfs
|
- name: Checkout current branch with lfs
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@master
|
||||||
|
|
|
||||||
|
|
@ -13,12 +13,9 @@ A good-looking 2D adventure.
|
||||||
|
|
||||||
## Todo
|
## Todo
|
||||||
|
|
||||||
- Frontend nginx sidable logging
|
- Frontend nginx disable logging
|
||||||
- webpack glsl loader
|
|
||||||
- procedural piano
|
- procedural piano
|
||||||
- lightweight object storage
|
- lightweight object storage
|
||||||
- 502 error page for ingress
|
|
||||||
- vs code glsl formatter
|
|
||||||
- docker engine dashboard?
|
- docker engine dashboard?
|
||||||
- local dev env
|
- local dev env
|
||||||
- prettier script
|
- prettier script
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue