Update docker-image.yml

This commit is contained in:
Jialinvip 2023-08-07 13:01:44 +08:00 committed by GitHub
parent 26e252e1d6
commit 973f55985f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,54 @@
name: Docker Image CI name: Publish Docker image (amd64)
on: on:
push: push:
branches: [ "main" ] tags:
pull_request: - '*'
branches: [ "main" ] workflow_dispatch:
inputs:
name:
description: 'reason'
required: false
jobs: jobs:
push_to_registries:
build: name: Push Docker image to multiple registries
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps: steps:
- uses: actions/checkout@v3 - name: Check out the repo
- name: Build the Docker image uses: actions/checkout@v3
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
- name: Save version info
run: |
git describe --tags > VERSION
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: |
jialinvip/one-api
ghcr.io/${{ github.repository }}
- 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 }}