feat:make image every push

Signed-off-by: Chen Kai <281165273grape@gmail.com>
This commit is contained in:
Chen Kai 2024-03-08 15:47:11 +08:00
parent e52ff169cf
commit 1a959fb056
2 changed files with 45 additions and 1 deletions

44
.github/workflows/image.yml vendored Normal file
View file

@ -0,0 +1,44 @@
name: shisui latest image
on:
push:
branches: [ portal ]
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
push_image_to_github:
name: Push Docker image to Github
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile.portal
push: true
tags: ${{ env.REGISTRY }}/${{ github.repository }}:latest

View file

@ -1,4 +1,4 @@
name: shisui image
name: shisui release image
on:
release: