Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish Docker image build | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| - '!*-alpha*' | |
| workflow_dispatch: | |
| inputs: | |
| name: | |
| description: 'reason' | |
| required: false | |
| jobs: | |
| push_to_registries: | |
| name: Push Docker image to Docker Hub | |
| runs-on: ubuntu-latest | |
| permissions: | |
| packages: write | |
| contents: read | |
| steps: | |
| - run: | | |
| echo 本次构建的版本为:${{ github.ref_name }} | |
| echo "Current date: $(date +'%m.%d')" | |
| echo "DATE_TAG=$(date +'%m.%d')" >> $GITHUB_ENV | |
| env | |
| - name: Check out the repo | |
| uses: actions/checkout@v3 | |
| - name: Log in to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Extract metadata (tags, labels) for Docker | |
| id: meta | |
| uses: docker/metadata-action@v4 | |
| with: | |
| images: ag471782517/new-api | |
| tags: | | |
| type=raw,value=latest | |
| type=ref,event=tag | |
| type=raw,value=v${{ env.DATE_TAG }} | |
| - name: Build and push Docker images | |
| uses: docker/build-push-action@v3 | |
| with: | |
| context: . | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} |