Skip to content

Commit 280e310

Browse files
committed
Merge branch 'master' of https://github.com/SeymenNW/PricelyWASM
2 parents 3e0e6c9 + 38e2988 commit 280e310

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/frontendflow.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
26+
docker push ${{ secrets.DOCKER_HUB_USERNAME }}/pricelyweb

0 commit comments

Comments
 (0)