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