summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTilmann Meyer <allescrafterx@gmail.com>2021-03-04 21:54:41 +0100
committerGitHub <noreply@github.com>2021-03-04 15:54:41 -0500
commitdc8fe1bb6cf5bd866f0c7359ec4e6af5dfc4682b (patch)
tree0b763cd705ff690f82502694ecfaf054a7e76e48
parent7120611eac2f0909b0051883d61714a0a6df9b9c (diff)
ci: remove AUR deploy (#2411)
It was adopted as a community package so this is no longer needed
-rw-r--r--.github/workflows/deploy.yml36
1 files changed, 8 insertions, 28 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 5a67e84a6..6e151b981 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -38,14 +38,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- - name: Setup | Checkout
- uses: actions/checkout@master
+ - name: Setup | Checkout
+ uses: actions/checkout@master
- - name: Publish
- uses: netlify/actions/build@master
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
+ - name: Publish
+ uses: netlify/actions/build@master
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
# Build sources for every OS
github_build:
@@ -125,7 +125,7 @@ jobs:
uses: actions-rs/cargo@v1
# TODO: Remove this once it's the default
env:
- SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk
+ SDKROOT: /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk
with:
command: build
args: --release --features tls-vendored --target ${{ matrix.target }}
@@ -188,23 +188,3 @@ jobs:
body_path: RELEASE.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
- aur_release:
- runs-on: ubuntu-latest
- name: Create AUR release
- needs: github_release # The -bin version downloads and shasums it
- steps:
- - name: Build | Publish AUR package
- uses: ATiltedTree/create-aur-release@v1
- with:
- package_name: starship
- commit_username: "Starship Bot"
- commit_email: starship.bot.noreply@gmail.com
- ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
- - name: Build | Publish AUR package (-bin version)
- uses: ATiltedTree/create-aur-release@v1
- with:
- package_name: starship-bin
- commit_username: "Starship Bot"
- commit_email: starship.bot.noreply@gmail.com
- ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}