name: Gitea Actions Demo run-name: ${{ gitea.actor }} is testing out Gitea Actions ๐Ÿš€ on: [push] jobs: Explore-Gitea-Actions: runs-on: ubuntu-latest steps: - name: ๅ…‹้š†ไปฃ็  uses: https://gitea.com/actions/checkout@v4 - run: | download_url="https://dragonwell.oss-cn-shanghai.aliyuncs.com/21.0.6.0.6%2B7-test-dragonwell_extended/Alibaba_Dragonwell_Extended_21.0.6.0.6.7_x64_linux.tar.gz" wget -O $RUNNER_TEMP/java_package.tar.gz $download_url - uses: actions/setup-java@v4 with: distribution: 'jdkfile' jdkFile: ${{ runner.temp }}/java_package.tar.gz java-version: '21.0.6' architecture: x64 - 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 }}."