From a2ebef4da609c3514a4491762eb034fae0268c9e Mon Sep 17 00:00:00 2001 From: Willy Date: Tue, 25 Jan 2022 11:02:46 +0100 Subject: [PATCH] remove jobs that we won't be using anyway this includes sentry and homebrew releases and slack notifications --- .github/workflows/build.yml | 59 ------------------------------------- 1 file changed, 59 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 93eb782d..2d53be73 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -572,62 +572,3 @@ jobs: # TODO do we even want a "static" :dev tag? - name: Docker Build :dev run: make buildx-dev - -# sentry-release: -# needs: docker-release -# runs-on: ubuntu-latest -# steps: -# - name: Checkout Statping Repo -# uses: actions/checkout@v2 -# -# - name: Setup Sentry CLI -# uses: mathrix-education/setup-sentry-cli@master -# with: -# version: latest -# url: ${{ secrets.SENTRY_URL }} -# token: ${{ secrets.SENTRY_AUTH_TOKEN }} -# organization: statping -# -# - name: Setting ENV's -# run: echo "VERSION=$(cat version.txt)" >> $GITHUB_ENV -# shell: bash -# -# - name: Sentry Release -# run: make sentry-release - -# everything from here is stable only - -# homebrew-release: -# needs: docker-release -# runs-on: ubuntu-latest -# steps: -# - name: Checkout Statping Repo -# uses: actions/checkout@v2 -# -# - name: Setting ENV's -# run: echo "VERSION=$(cat version.txt)" >> $GITHUB_ENV -# shell: bash -# -# - name: Update Homebrew Package -# env: -# VERSION: ${{ env.VERSION }} -# TRAVIS_API: ${{ secrets.TRAVIS_API }} -# run: make publish-homebrew -# -# slack-update: -# needs: docker-release -# runs-on: ubuntu-latest -# steps: -# - name: Checkout Statping Repo -# uses: actions/checkout@v2 -# -# - name: Setting ENV's -# run: echo "VERSION=$(cat version.txt)" >> $GITHUB_ENV -# shell: bash -# -# - name: Slack Notification -# uses: rtCamp/action-slack-notify@master -# env: -# SLACK_WEBHOOK: ${{ secrets.SLACK_URL }} -# SLACK_CHANNEL: dev -# SLACK_USERNAME: StatpingDev