From 0334df2e456db8bef85b58c8d6a4b39694768737 Mon Sep 17 00:00:00 2001 From: Ilya Sakharchuk Date: Tue, 27 Feb 2024 15:54:33 +0300 Subject: [PATCH] remove pages workflow --- .github/workflows/pages.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml deleted file mode 100644 index 21a4a41..0000000 --- a/.github/workflows/pages.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Continuous deployment -on: - workflow_run: - branches: [main] - workflows: [Continuous integration] - types: [completed] - -jobs: - release: - runs-on: ubuntu-latest - steps: - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - target: wasm32-unknown-unknown - - - uses: jetli/trunk-action@v0.1.0 - - uses: jetli/wasm-bindgen-action@v0.1.0 - - - uses: actions/checkout@v2 - - - run: trunk build --release - - - uses: peaceiris/actions-gh-pages@v3 - if: github.ref == 'refs/heads/main' - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dist