Skip to content

Commit

Permalink
Merge pull request #123 from jason5ng32/dev
Browse files Browse the repository at this point in the history
Update Docker
  • Loading branch information
jason5ng32 authored Feb 26, 2024
2 parents 78c3d99 + 74284ad commit ef332d5
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,31 @@ jobs:

steps:
- name: Check Out Repo
uses: actions/checkout@v2
uses: actions/checkout@v4

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

# 登录到 Docker Hub
- name: Login to Docker Hub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

# 登录到 GitHub Packages
- name: Login to GitHub Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and Push Docker Image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
push: true
tags: jason5ng32/myip:latest
tags: |
jason5ng32/myip:latest
ghcr.io/${{ github.repository_owner }}/myip:latest
platforms: linux/amd64,linux/arm64

0 comments on commit ef332d5

Please sign in to comment.