From ca485b177435c9bde8b9c16ce6e9e291071af6c2 Mon Sep 17 00:00:00 2001 From: Ortwin Pinke Date: Thu, 11 Jan 2024 18:52:55 +0000 Subject: [PATCH] revert a539bd8aa5bc0f50d906ef75766de83653c4be61 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit revert .gitea/workflow/ci.yml hinzugefĆ¼gt add release action --- .gitea/workflow/ci.yml | 48 ------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 .gitea/workflow/ci.yml diff --git a/.gitea/workflow/ci.yml b/.gitea/workflow/ci.yml deleted file mode 100644 index 984f216..0000000 --- a/.gitea/workflow/ci.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: "Release" - -on: - push: - tags: - - "*" - -env: - COMPOSER_FLAGS: "--no-dev --no-interaction" - -jobs: - build: - name: Upload Release Asset - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: "Install PHP" - uses: "shivammathur/setup-php@v2" - with: - coverage: "none" - extensions: "intl" - ini-values: "memory_limit=-1" - php-version: "7.4" - - - name: "Install dependencies from composer.lock using composer binary provided by system" - run: "composer install ${{ env.COMPOSER_FLAGS }}" - - - name: Archive Release - uses: thedoctor0/zip-release@master - with: - type: 'zip' - filename: '${{ github.event.repository.name }}.zip' - exclusions: '*.git* /*node_modules/* .editorconfig' - - - name: Upload Release - uses: ncipollo/release-action@v1 - with: - artifacts: "${{ github.event.repository.name }}.zip" - token: ${{ secrets.GITHUB_TOKEN }} - - - name: Release - uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') - with: - draft: true - files: ${{ github.event.repository.name }}.zip \ No newline at end of file