ci(docker-publish): 确保仅在push事件时提交标签更新 (#22)
Docker Build and Publish / build (push) Waiting to run
Gitea Sync / trigger-gitea-sync (push) Waiting to run
Java CI with Maven / build (push) Waiting to run

* ci(docker-publish): 确保仅在push事件时提交标签更新

* refactor(github-workflows): 标准化Gitea Sync workflow名称

* feat(cors): 全局启用CORS支持

在Spring应用中通过配置CORS实现跨域请求支持,允许所有来源、方法和头。
此变更有助于解决前端应用在不同域上运行时的跨域问题。
This commit is contained in:
2024-08-28 21:13:59 +08:00
committed by GitHub
parent 2c51b04381
commit b7afe430d3
3 changed files with 25 additions and 1 deletions
+1
View File
@@ -113,6 +113,7 @@ jobs:
with:
cmd: yq eval '.image.tag = "${{ steps.meta.outputs.version }}"' -i values.yaml
- name: Git Auto Commit
if: github.event_name == 'push'
uses: stefanzweifel/git-auto-commit-action@v5.0.1
with:
commit_message: "Update deployment image to ${{ steps.meta.outputs.version }}"
+1 -1
View File
@@ -1,4 +1,4 @@
name: gitea-sync.yml
name: Gitea Sync
on:
push:
branches: [ "main", "manifest" ]