diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 047474a20..e4280a3e5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,34 +11,34 @@ on: permissions: contents: write jobs: - test: - strategy: - fail-fast: true - matrix: - os: [ubuntu-latest] - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v2 - - name: Install project - run: | - sudo mkdir /opt/hiddify-config - sudo cp -r * /opt/hiddify-config/ - cd /opt/hiddify-config/ - sudo bash install.sh - - name: check working - env: - SQLALCHEMY_DATABASE_URI: sqlite:////opt/hiddify-config/hiddify-panel/database.db - run: | - cd /opt/hiddify-config/ - grep -q -e '-----Finished!-----' log/system/0-install.log - cd hiddify-panel;hiddifypanel all-configs + # test: + # strategy: + # fail-fast: true + # matrix: + # os: [ubuntu-latest] + # runs-on: ${{ matrix.os }} + # steps: + # - uses: actions/checkout@v2 + # - name: Install project + # run: | + # sudo mkdir /opt/hiddify-config + # sudo cp -r * /opt/hiddify-config/ + # cd /opt/hiddify-config/ + # sudo bash install.sh + # - name: check working + # env: + # SQLALCHEMY_DATABASE_URI: sqlite:////opt/hiddify-config/hiddify-panel/database.db + # run: | + # cd /opt/hiddify-config/ + # grep -q -e '-----Finished!-----' log/system/0-install.log + # cd hiddify-panel;hiddifypanel all-configs release: # if: startsWith(github.ref, 'refs/tags/v') name: Create Release runs-on: ubuntu-latest - needs: test + # needs: test steps: - uses: actions/checkout@v2 with: