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.
2 parents 3e0e6c9 + 38e2988 commit 280e310Copy full SHA for 280e310
.github/workflows/frontendflow.yml
@@ -0,0 +1,26 @@
1
+name: Pricely Frontend
2
+
3
+on:
4
+ push:
5
+ branches: master
6
+ paths:
7
+ - PricelyWeb/**
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
16
+ - name: Docker Hub log in
17
+ run: echo ${{ secrets.DOCKER_HUB_PASSWORD }} | docker login --username ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin
18
19
+ - name: Build the Docker image
20
+ run: |
21
+ docker build -t pricelyweb . -f PricelyWeb/PricelyWeb/Dockerfile --tag ${{ secrets.DOCKER_HUB_USERNAME }}/pricelyweb
22
23
24
+ - name: Push the Docker image
25
26
+ docker push ${{ secrets.DOCKER_HUB_USERNAME }}/pricelyweb
0 commit comments