action测试
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 2s

This commit is contained in:
hxuanyu 2024-11-04 11:07:23 +08:00
parent 5b25a2db6c
commit 396aaec657

View File

@ -1,38 +1,19 @@
name: Build SpringBoot and Notify name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: on: [push]
push:
branches:
- master
pull_request:
branches:
- master
jobs: jobs:
build: Explore-Gitea-Actions:
runs-on: common-devops runs-on: common-devops
steps: steps:
# 设置Java环境 - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- name: Set up JDK - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
uses: actions/setup-java@v3 - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
with: - name: Check out repository code
java-version: '8' uses: actions/checkout@v4
distribution: 'temurin' - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
cache: 'maven' - run: echo "🖥️ The workflow is now ready to test your code on the runner."
# 检出代码 - name: List files in the repository
- uses: actions/checkout@v3
# Maven 构建打包
- name: Build with Maven
run: mvn clean package -DskipTests
# 发送POST请求 - JSON数据
- name: Send POST notification
run: | run: |
curl -X POST \ ls ${{ gitea.workspace }}
"https://2758.push.ft07.com/send/sctp2758tbaxw3tz7hyy3zisxzsuixz.send" \ - run: echo "🍏 This job's status is ${{ job.status }}."
-H "Content-type: application/x-www-form-urlencoded" \
-d "title=GiteaAction 执行完成"
-d "desp=GiteaAction 执行内容测试"
-d "tags=Gitea|GiteaActions"