Skip to content

Commit

Permalink
Update fastgpt-image-personal.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mxdlzg authored Apr 29, 2024
1 parent 9c602a5 commit c8b0577
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/fastgpt-image-personal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,31 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
driver-opts: network=host

- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GH_PAT }}

- name: Set DOCKER_REPO_TAGGED based on branch or tag
run: |
echo "DOCKER_REPO_TAGGED=ghcr.io/${{ github.repository_owner }}/fastgpt:latest" >> $GITHUB_ENV
- name: Build and publish image for main branch or tag push event
env:
DOCKER_REPO_TAGGED: ${{ env.DOCKER_REPO_TAGGED }}
Expand All @@ -50,3 +55,13 @@ jobs:
-t ${DOCKER_REPO_TAGGED} \
-f Dockerfile \
.
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Tag and push image to Docker Hub
run: |
docker tag ${DOCKER_REPO_TAGGED} docker.io/${{ github.repository_owner }}/fastgpt:latest
docker push docker.io/${{ github.repository_owner }}/fastgpt:latest

0 comments on commit c8b0577

Please sign in to comment.