Skip to content

Commit

Permalink
新增GitHub Actions工作流以构建和推送Docker镜像,更新.gitignore以排除.github目录
Browse files Browse the repository at this point in the history
  • Loading branch information
snowykami committed Nov 15, 2024
1 parent 94a021b commit df00c61
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
43 changes: 43 additions & 0 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@

name: Docker Image Build

on:
push:
branches: [main]

workflow_dispatch:

permissions:
contents: write

concurrency:
group: pages
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log in to Harbor
uses: docker/login-action@v2
with:
registry: git.liteyuki.icu
username: ${{ secrets.GITEA_USERNAME }}
password: ${{ secrets.GITEA_PASSWORD }}

- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: git.liteyuki.icu/bot/app:latest

- name: Log out from Gitea
run: docker logout git.liteyuki.icu
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ config.yml
config.example.yml

# vuepress
.github

# mupy
mypy.ini
Expand Down

0 comments on commit df00c61

Please sign in to comment.