Skip to content

Commit

Permalink
fix: workflowa
Browse files Browse the repository at this point in the history
  • Loading branch information
Gowtham1729 committed Nov 3, 2023
1 parent 3204010 commit 01886fb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.PAT_TOKEN }}

# Authentication via credentials json
# Authentication via credentials json
- id: 'auth'
uses: 'google-github-actions/auth@v1'
with:
Expand Down Expand Up @@ -53,4 +55,4 @@ jobs:
git diff
git add infrastructure/k8s/folio-feed-helm/values.yaml
git commit -m "backend image update: $GITHUB_SHA"
git push https://${{ secrets.PAT_TOKEN }}@github.com/Gowtham1729/folio-feed.git main
git push origin main
4 changes: 3 additions & 1 deletion .github/workflows/build-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.PAT_TOKEN }}

# Authentication via credentials json
- id: 'auth'
Expand Down Expand Up @@ -53,4 +55,4 @@ jobs:
git diff
git add infrastructure/k8s/folio-feed-helm/values.yaml
git commit -m "frontend image update: $GITHUB_SHA"
git push https://${{ secrets.PAT_TOKEN }}@github.com/Gowtham1729/folio-feed.git main
git push origin main
2 changes: 1 addition & 1 deletion applications/frontend/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
<div>
<NuxtWelcome />
</div>
<div>Hello World Test</div>
<div>Hello World Test 2</div>
</template>

0 comments on commit 01886fb

Please sign in to comment.