Skip to content

Commit

Permalink
v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
black-da-bull committed Jun 22, 2024
1 parent b8abdec commit 10ba50a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/npm-docker-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,18 @@ jobs:

# Step 3: Build Docker image
- name: Build Docker image
run: docker build -t gpt-crawler .
run: docker build -t gpt-crawler containerapp

# Step 4: Log in to Docker Hub
- name: Log in to Docker Hub
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}

# Step 5: Push image to Docker Hub
# Step 5: Add metadata and labels using docker/metadata-action
- name: Extract metadata
uses: docker/metadata-action@v5
with:
images: gpt-crawler

# Step 6: Push image to Docker Hub
- name: Push image to Docker Hub
run: docker push gpt-crawler
run: docker push gpt-crawler

0 comments on commit 10ba50a

Please sign in to comment.