Skip to content

Commit

Permalink
Merge pull request #211 from moomiji/master
Browse files Browse the repository at this point in the history
修复 docker action
  • Loading branch information
CHKZL committed Jun 21, 2024
2 parents 75645fc + 57bf81b commit 62a0aaa
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/DDTV_Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,11 +217,14 @@ jobs:


- uses: moomiji/docker-ddtv@v5
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
with:
push: true
repo: ddtv/server
path: ${{ steps.build.outputs.path }}
version: ${{ steps.build.outputs.version }}
path: Server/build_output
version: ${{ github.ref_name }}
runtime: ${{ matrix.runtime }}
os_id: ${{ contains(matrix.runtime, 'musl') && 'alpine' || 'debian' }}
dotnet-image-version: ${{ contains(matrix.runtime, 'musl') && '8.0-alpine' || '8.0' }}
Expand Down Expand Up @@ -479,6 +482,9 @@ jobs:
Docker:
needs: [Server]
runs-on: ubuntu-latest
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
steps:
- uses: moomiji/docker-ddtv@v5
with:
Expand Down

0 comments on commit 62a0aaa

Please sign in to comment.