Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nheek committed Jan 28, 2024
1 parent c0ed30a commit ba810cc
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,21 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: hi
path: .env

- name: List files in the current working directory
run: |
ls -la
path: .

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Download .env artifact
uses: actions/download-artifact@v2
with:
name: hi
path: ./downloaded-artifact

- name: List contents of downloaded artifact
run: |
ls -la ./downloaded-artifact
- name: Build and Push Docker Image
run: |
echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
Expand Down

0 comments on commit ba810cc

Please sign in to comment.