demo/.gitea/workflows/ci.yaml

107 lines
3.2 KiB
YAML
Raw Permalink Normal View History

2024-04-01 11:07:20 -04:00
name: CI
2024-04-02 14:00:57 -04:00
run-name: ${{ gitea.actor }} Gitea Actions 🚀🚀🚀
2024-04-01 11:07:20 -04:00
on:
push:
# Sequence of patterns matched against refs/heads
2024-04-02 13:45:27 -04:00
branches:
- main
2024-04-01 11:07:20 -04:00
# Sequence of patterns matched against refs/tags
tags:
2024-04-02 12:42:23 -04:00
- v*
2024-04-01 11:07:20 -04:00
env:
# DOCKER_REGISTRY: docker.io
# DOCKER_USERNAME: softyouling
# 此处可修改为你任意 docker 镜像仓库地址和用户名
DOMAIN: gitea.lntu.edu.cn
2024-04-01 13:20:55 -04:00
# IMAGE_NAME: code/demo/demo
2024-04-01 11:07:20 -04:00
jobs:
build:
2024-04-02 13:14:58 -04:00
runs-on: ubuntu-latest
2024-04-02 13:45:27 -04:00
container:
image: ghcr.m.daocloud.io/catthehacker/ubuntu:act-latest
volumes:
- /var/run/user/1000/docker.sock:/var/run/docker.sock
2024-04-01 11:07:20 -04:00
steps:
2024-04-02 12:42:23 -04:00
# - name: 环境检测
# run: |
# which node
# node --version
# which npm
# npm --version
# which docker
# docker info
2024-04-02 14:00:57 -04:00
# echo ${{ gitea.token }}
2024-04-02 12:42:23 -04:00
# echo ${{ env.GITOPS_URL }}
2024-04-01 11:07:20 -04:00
2024-04-02 13:57:20 -04:00
- name: 🔎拉取代码
2024-04-02 12:42:23 -04:00
uses: https://${{ env.DOMAIN }}/actions/checkout@v4
2024-04-01 11:07:20 -04:00
2024-04-02 12:42:23 -04:00
# Docker配置多平台环境
# - name: Docker配置多平台环境
# uses: https://${{ env.DOMAIN }}/actions/setup-buildx-action@v3
2024-04-01 11:07:20 -04:00
2024-04-02 12:42:23 -04:00
# - name: 获取当前时间
# id: date
# run: echo "::set-output name=date::$(date +'%Y%m%d%H%M%S')"
2024-04-01 11:07:20 -04:00
2024-04-02 12:42:23 -04:00
# - name: 构建 & 推送镜像
# uses: https://${{ env.DOMAIN }}/actions/docker-build-push@v6
# with:
# image: ${{ gitea.repository }}
2024-04-02 14:00:57 -04:00
# tags: ${{ gitea.sha }}
2024-04-02 12:42:23 -04:00
# registry: softyouling-docker.pkg.coding.net
# enableBuildKit: true
# # multiPlatform: true
# # platform: linux/amd64,linux/arm64,linux/arm/v7
# dockerfile: Dockerfile
# username: ${{ secrets.DOCKER_USERNAME }}
# password: ${{ secrets.DOCKER_PASSWORD }}
- name: 🐬镜像构建推送
uses: https://${{ env.DOMAIN }}/actions/docker-build-push@main
with:
image: ${{ gitea.repository }}
tags: ${{ gitea.sha }}
registry: ${{ env.DOMAIN }}
# enableBuildKit: true
provenance: false
dockerfile: Dockerfile
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
2024-04-01 11:07:20 -04:00
gtiops:
2024-04-02 13:14:58 -04:00
runs-on: ubuntu-latest
2024-04-01 11:07:20 -04:00
if: ${{ success() }}
needs: [build]
2024-04-01 14:38:40 -04:00
steps:
2024-04-02 13:57:20 -04:00
- name: 🍏更新应用镜像
2024-04-02 14:15:01 -04:00
uses: http://gitea.lntu.edu.cn/actions/gitops@main
with:
email: "gitops@lntu.edu.cn"
name: "千里走单骑"
value: ${{ env.DOMAIN }}/${{ gitea.repository }}
tag: ${{ gitea.sha }}
url: ${{ env.DOMAIN }}/${{ secrets.GITOPS_REPO}}
filename: ${{ secrets.FILE_NAME }}
token: ${{ secrets.GITOPS_TOKEN }}
2024-04-01 11:07:20 -04:00
微信通知:
2024-04-02 13:14:58 -04:00
runs-on: ubuntu-latest
2024-04-01 11:07:20 -04:00
if: ${{success()}}
needs: [build, gtiops]
steps:
2024-04-02 12:42:23 -04:00
# 发送通知
2024-04-02 13:57:20 -04:00
- name: 🚀微信通知
2024-04-02 12:42:23 -04:00
uses: https://${{ env.DOMAIN }}/actions/action-wechat-work@master
# 若没有配置机器人WebHook则跳过
if: ${{ secrets.WECHAT_WORK_BOT_WEBHOOK != '' }}
env:
WECHAT_WORK_BOT_WEBHOOK: ${{ secrets.WECHAT_WORK_BOT_WEBHOOK }}
with:
msgtype: markdown
2024-04-02 14:00:57 -04:00
content: "✅ 应用版本更新成功\n > 🐬 镜像:\n > softyouling-docker.pkg.coding.net/code/demo/demo:${{ gitea.sha }}\n > 🍏 就能帮你到这了"