diff options
| author | Michael Tews <michael@tews.dev> | 2026-03-24 14:13:54 +0100 |
|---|---|---|
| committer | Michael Tews <michael@tews.dev> | 2026-03-24 14:33:42 +0100 |
| commit | 5e7f2dbeed8c411a10ad5f0899a4234e31b94030 (patch) | |
| tree | 4b7f8c3fc418505d8611e64de8be9225b2f8b72b | |
| parent | 1059f16c8752b83fab1a34c01c16c260b5a07924 (diff) | |
ci: removes build-artifacts job
| -rw-r--r-- | .github/workflows/build-artifacts.yml | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/.github/workflows/build-artifacts.yml b/.github/workflows/build-artifacts.yml deleted file mode 100644 index 99a1b0f..0000000 --- a/.github/workflows/build-artifacts.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Build Artifacts - -on: - workflow_dispatch: - push: - branches: - - main - pull_request: - -permissions: - contents: write - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version-file: go.mod - cache: true - - - name: Install Mage - run: | - go install github.com/magefile/mage@v1.15.0 - echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH" - - - name: Build plugin and standalone binaries - run: mage - - - name: Publish binaries to GitHub Release assets - if: github.event_name != 'pull_request' - uses: softprops/action-gh-release@v2 - with: - tag_name: build-${{ github.sha }} - name: Build ${{ github.sha }} - prerelease: true - files: | - build/rclone-studip - build/librcloneplugin_backend_studip.so - fail_on_unmatched_files: true |
