bump all dependencies #16
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: ci | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: build | |
run: | | |
echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com --username x-access-token --password-stdin | |
docker build -t docker.pkg.github.com/vegarm/googvarm/frontend:${GITHUB_SHA:0:8} . | |
- name: push | |
run: | | |
docker push docker.pkg.github.com/vegarm/googvarm/frontend:${GITHUB_SHA:0:8} | |
deploy: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: deploy | |
run: | | |
echo deploy | |