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:
|
||||
- master
|
||||
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:
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- build-error-pages
|
||||
steps:
|
||||
- name: Checkout current branch with lfs
|
||||
uses: actions/checkout@master
|
||||
|
|
@ -25,6 +46,8 @@ jobs:
|
|||
|
||||
build-frontend:
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- build-error-pages
|
||||
steps:
|
||||
- name: Checkout current branch with lfs
|
||||
uses: actions/checkout@master
|
||||
|
|
|
|||
|
|
@ -13,12 +13,9 @@ A good-looking 2D adventure.
|
|||
|
||||
## Todo
|
||||
|
||||
- Frontend nginx sidable logging
|
||||
- webpack glsl loader
|
||||
- Frontend nginx disable logging
|
||||
- procedural piano
|
||||
- lightweight object storage
|
||||
- 502 error page for ingress
|
||||
- vs code glsl formatter
|
||||
- docker engine dashboard?
|
||||
- local dev env
|
||||
- prettier script
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue