From 11daf2db226fa0ac72122bdc8f68ace14c06d9bc Mon Sep 17 00:00:00 2001 From: Alexey Igrychev Date: Fri, 22 Jul 2022 10:17:05 +0100 Subject: [PATCH] ci(release): delete Multiwerf Release Publisher Signed-off-by: Alexey Igrychev --- .../workflows/multiwerf_release_publisher.yml | 48 ------------------- 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/multiwerf_release_publisher.yml diff --git a/.github/workflows/multiwerf_release_publisher.yml b/.github/workflows/multiwerf_release_publisher.yml deleted file mode 100644 index 9d420c144a..0000000000 --- a/.github/workflows/multiwerf_release_publisher.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: Multiwerf Release Publisher -on: - create: - -env: - GO111MODULE: on - -jobs: - publish_release: - if: ${{ startsWith(github.ref, 'refs/tags/v') }} - name: Publish werf release - runs-on: [self-hosted, linux, builder] - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version-file: go.mod - id: go - - - name: Publish release - run: | - ./scripts/publish_release.sh ${GITHUB_REF#refs/tags/} - shell: bash - env: - S3_REGION: ${{ secrets.S3_REGION }} - S3_ENDPOINT: ${{ secrets.S3_ENDPOINT }} - S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }} - S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }} - S3_BUCKET_NAME: ${{ secrets.S3_BUCKET_NAME }} - - notification: - name: Notification - if: ${{ startsWith(github.ref, 'refs/tags/v') && always() }} - needs: publish_release - runs-on: ubuntu-latest - steps: - - - uses: technote-space/workflow-conclusion-action@v2 - - - name: Notify - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} - SLACK_COLOR: ${{ env.WORKFLOW_CONCLUSION }} - MSG_MINIMAL: "ref,actions url"