File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - master
7+ - release/**
78 pull_request :
89jobs :
910 test :
4950 run : |
5051 bundle install --jobs 4 --retry 3
5152 bundle exec rake
53+
54+ job_zeus :
55+ name : Zeus
56+ runs-on : ubuntu-latest
57+ steps :
58+ - uses : actions/checkout@v2
59+ - uses : actions/setup-node@v1
60+ - name : Set up Ruby
61+ uses : ruby/setup-ruby@v1
62+ with :
63+ ruby-version : 2.6 # Not needed with a .ruby-version file
64+ - run : bundle install
65+ - name : Install Zeus
66+ run : |
67+ yarn global add @zeus-ci/cli
68+ echo "::add-path::$(yarn global bin)"
69+ - name : Upload to Zeus
70+ env :
71+ ZEUS_API_TOKEN : ${{ secrets.ZEUS_API_TOKEN }}
72+ ZEUS_HOOK_BASE : ${{ secrets.ZEUS_HOOK_BASE }}
73+ run : |
74+ zeus job update -b $GITHUB_RUN_ID -j $GITHUB_RUN_NUMBER -r $GITHUB_SHA
75+ gem build sentry-raven.gemspec
76+ zeus upload -b $GITHUB_RUN_ID -j $GITHUB_RUN_NUMBER -t "application/tar+gem" ./*.gem
77+ zeus job update --status=passed -b $GITHUB_RUN_ID -j $GITHUB_RUN_NUMBER -r $GITHUB_SHA
You can’t perform that action at this time.
0 commit comments