Sha256: 52a221b95102cbbc1021a44af6536717e1df1b7a43d019987c8693da8b5ec853

Contents?: true

Size: 989 Bytes

Versions: 4

Compression:

Stored size: 989 Bytes

Contents

name: Zeus Upload

on:
  push:
    branches:
      - release/**

jobs:
  zeus_upload:
    name: Zeus
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v1
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.6 # Not needed with a .ruby-version file
      - run: bundle install
      - name: Install Zeus
        run: |
          yarn global add @zeus-ci/cli
          echo "::add-path::$(yarn global bin)"
      - name: Upload to Zeus
        env:
          ZEUS_API_TOKEN: ${{ secrets.ZEUS_API_TOKEN }}
          ZEUS_HOOK_BASE: ${{ secrets.ZEUS_HOOK_BASE }}
        run: |
          zeus job update -b $GITHUB_RUN_ID -j $GITHUB_RUN_NUMBER -r $GITHUB_SHA
          gem build sentry-raven.gemspec
          zeus upload -b $GITHUB_RUN_ID -j $GITHUB_RUN_NUMBER -t "application/tar+gem" ./*.gem
          zeus job update --status=passed -b $GITHUB_RUN_ID -j $GITHUB_RUN_NUMBER -r $GITHUB_SHA

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sentry-raven-3.1.1 .github/workflows/zeus_upload.yml
sentry-raven-3.1.0 .github/workflows/zeus_upload.yml
sentry-raven-3.0.4 .github/workflows/zeus_upload.yml
sentry-raven-3.0.3 .github/workflows/zeus_upload.yml