From e9f787b82bf73995e5c0e20e598933eeda3d1e9a Mon Sep 17 00:00:00 2001 From: gilesb Date: Wed, 25 Oct 2023 12:19:52 +0100 Subject: [PATCH] test-push --- .gitea/workflows/test-push.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .gitea/workflows/test-push.yml diff --git a/.gitea/workflows/test-push.yml b/.gitea/workflows/test-push.yml deleted file mode 100644 index e0c4cee..0000000 --- a/.gitea/workflows/test-push.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: build-develop-branch -run-name: ${{ github.actor }} is learning GitHub Actions -on: - push: - -jobs: - new release: - runs-on: ubuntu-latest - steps: - - name: get tea - run: | - curl https://dl.gitea.com/tea/0.9.2/tea-0.9.2-linux-386 --output ../tea - chmod +x ../tea - ../tea login add -n=this --url=${{ github.server_url}} -t=${{ secrets.BOT_TOKEN }} - - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 - with: - token: ${{ secrets.BOT_TOKEN }} - - name: bump release - run: | - export version=$(../tea r ls -o=simple | head -n 1 | tr " " "\n" | head -n 1 | awk -F. '{$NF = $NF + 1;} 1' | sed 's/ /./g') - ../tea r c --note="this isrelease ${version}" --tag=${version} --title=${version} --target=${{ github.sha }} - echo ::set-env name=VERSION::$version