diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 25c24fc..39a0f3b 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -7,14 +7,16 @@ on: jobs: build: - runs-on: docker + runs-on: archlinux-latest steps: - - uses: actions/checkout@v3 - - name: Install dependencies - run: sudo pacman -Syu --noconfirm base-devel jdk21-openjdk - - - name: Make gradle executable - run: sudo chmod +x gradlew - - - name: Build project - run: make \ No newline at end of file + - 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: | + ls ${{ gitea.workspace }} + - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file