Skip to content

Commit

Permalink
[publish] Add Python 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
TLCFEM committed Oct 11, 2024
1 parent bec7029 commit dea8a88
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@ jobs:
steps:
- name: Clone
uses: actions/checkout@v4
- name: Login
- name: Login Docker
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login GitHub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Buildx
uses: docker/setup-buildx-action@v3
- name: Build
Expand All @@ -23,4 +29,6 @@ jobs:
context: .
file: ./resource/Dockerfile
push: true
tags: tlcfem/vpmr:latest
tags: |
tlcfem/vpmr:latest
ghcr.io/tlcfem/vmpr:latest
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ Or you simply pull using the following command.

```bash
docker pull tlcfem/vpmr
# or using GitHub Container Registry
docker pull ghcr.io/tlcfem/vmpr
```

#### Windows
Expand Down

0 comments on commit dea8a88

Please sign in to comment.