Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
hemantapkh committed Jan 25, 2024
1 parent e8270d2 commit cca6a73
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ on:
workflow_dispatch:

jobs:
push-store-image:
runs-on: ubuntu-latest
push-store-image:
runs-on: ubuntu-latest

steps:
- name: 'Checkout'
uses: actions/checkout@main
steps:
- name: 'Checkout'
uses: actions/checkout@main

- name: 'Login to GHCR'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: 'Login to GHCR'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}

- name: 'Build Image'
run: docker build . --tag ghcr.io/hemantapkh/torrenthunt:latest
- push: 'Push to GHCR'
run: docker push ghcr.io/hemantapkh/torrenthunt:latest
- name: 'Build Image'
run: docker build . --tag ghcr.io/hemantapkh/torrenthunt:latest

- name: 'Push to GHCR'
run: docker push ghcr.io/hemantapkh/torrenthunt:latest

0 comments on commit cca6a73

Please sign in to comment.