diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 3121c1de..00000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Deploy - -on: - push: - tags: - - '*' - -jobs: - carthage: - name: Upload Carthage binary - runs-on: macos-13 - steps: - - uses: actions/checkout@v4 - - uses: AckeeCZ/load-xcode-version@1.1.0 - - name: Build - run: carthage build --no-skip-current --cache-builds --use-xcframeworks - - name: Archive - run: | - DST=$PWD - mkdir -p /tmp/ACKategories - mv Carthage/Build/*.xcframework /tmp/ACKategories - cd /tmp - zip -r "$DST/"ACKategories.xcframework.zip ACKategories - - uses: xresloader/upload-to-github-release@v1.3.12 - if: startsWith(github.ref, 'refs/tags/') - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - file: ACKategories.xcframework.zip - tags: true - draft: false