We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ea84c commit 6c5298cCopy full SHA for 6c5298c
.github/workflows/deploy.yaml
@@ -2,12 +2,13 @@ name: Deploy Frontend
2
on:
3
push:
4
branches:
5
- - 'main'
+ - main
6
7
jobs:
8
build:
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v2
12
- - run: docker build -t smaragda2/docker-learn -f Dockerfile.dev .
13
- - run: docker run -e CI=true smaragda2/docker-learn npm test
+ - run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
+ - run: docker build -t cygnetops/react-test -f Dockerfile.dev .
14
+ - run: docker run -e CI=true cygnetops/react-test npm test
0 commit comments