From afe04fb704dae7d059184eacc4341ea8d4204b25 Mon Sep 17 00:00:00 2001 From: amd64fox <62529699+amd64fox@users.noreply.github.com> Date: Sun, 1 Oct 2023 07:27:42 +0300 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/org.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/org.yml diff --git a/.github/workflows/org.yml b/.github/workflows/org.yml deleted file mode 100644 index 8f13082..0000000 --- a/.github/workflows/org.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Update github.io - -on: - workflow_dispatch: - push: - paths: - - 'run.ps1' - -jobs: - copy_file: - runs-on: ubuntu-latest - - steps: - - name: Checkout SpotX repo - uses: actions/checkout@v2 - with: - repository: SpotX-Official/SpotX - - - name: Checkout spotx-official.github.io repo - uses: actions/checkout@v2 - with: - repository: SpotX-Official/spotx-official.github.io - path: spotx-official.github.io - token: ${{ secrets.ORGPAT }} - - - name: Copy run.ps1 file - run: cp run.ps1 spotx-official.github.io/run.ps1 - - - name: Push changes - run: | - cd spotx-official.github.io - git config user.name "GitHub Actions" - git config user.email "actions@github.com" - git add run.ps1 - git commit -m "Update run.ps1" - git push