.github: remove my now-unused GitHub Actions config
- ID
2fe4695- date
2026-05-17 16:21:30+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
cb43ab2- message
.github: remove my now-unused GitHub Actions config- changed files
3 files, 84 deletions
Changed files
.github/dependabot.yml (287) → .github/dependabot.yml (0)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index 9db3071..0000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-version: 2
-updates:
- - package-ecosystem: "github-actions"
- directory: "/"
- schedule:
- interval: "weekly"
- day: "monday"
- time: "09:00"
- - package-ecosystem: "cargo"
- directory: "/"
- schedule:
- interval: "weekly"
- day: "monday"
- time: "09:00"
.github/workflows/test.yml (340) → .github/workflows/test.yml (0)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
deleted file mode 100644
index 21c5ac1..0000000
--- a/.github/workflows/test.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-on:
- push:
- branches:
- - main
- pull_request:
- branches:
- - main
-name: build
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v6
- - uses: dtolnay/rust-toolchain@v1
- with:
- toolchain: stable
-
- - run: cargo build
- - run: cargo test
- - run: cargo fmt --check
.github/workflows/upload_binaries.yml (1193) → .github/workflows/upload_binaries.yml (0)
diff --git a/.github/workflows/upload_binaries.yml b/.github/workflows/upload_binaries.yml
deleted file mode 100644
index ef62ab4..0000000
--- a/.github/workflows/upload_binaries.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-name: Release
-
-on:
- push:
- tags:
- - v[0-9]+.*
-
-jobs:
- create-release:
- runs-on: ubuntu-latest
- permissions:
- contents: write
- steps:
- - uses: actions/checkout@v6
- - uses: taiki-e/create-gh-release-action@v1
- with:
- changelog: CHANGELOG.md
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
- upload-assets:
- strategy:
- matrix:
- include:
- - target: aarch64-unknown-linux-gnu
- - target: aarch64-unknown-linux-musl
- - target: x86_64-unknown-linux-gnu
- - target: x86_64-unknown-linux-musl
-
- - target: aarch64-apple-darwin
- os: macos-latest
- - target: x86_64-apple-darwin
- os: macos-latest
-
- - target: x86_64-pc-windows-msvc
- os: windows-latest
-
- runs-on: ${{ matrix.os || 'ubuntu-latest' }}
- permissions:
- contents: write
- steps:
- - uses: actions/checkout@v6
- - uses: taiki-e/upload-rust-binary-action@v1
- with:
- target: ${{ matrix.target }}
- bin: dominant_colours
- tar: all
- zip: windows
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}