missed other image #21
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 Beta Site | |
on: | |
push: | |
branches: | |
- 'beta' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build Beta Site | |
run: | | |
docker login --username captainglacier --password ${{ secrets.DockerHubToken }} | |
docker build . --file beta.Dockerfile --tag captainglacier/angular-georgecolgrove:beta | |
docker push captainglacier/angular-georgecolgrove:beta |