-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (84 loc) · 2.48 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: CI
on:
push:
branches:
- master
- dev
tags:
- 'v*'
pull_request:
branches:
- master
- dev
jobs:
test:
strategy:
matrix:
include:
- ruby: '3.2'
gemfile: '7.1.0'
couchbase: '7.1.1'
- ruby: '3.0'
gemfile: '7.0.0'
couchbase: '6.6.5'
- ruby: '3.0'
gemfile: '7.0.0'
couchbase: '7.1.0'
- ruby: '2.7'
gemfile: '7.0.0'
couchbase: '7.1.0'
fail-fast: false
runs-on: ubuntu-20.04
name: ${{ matrix.ruby }} rails-${{ matrix.gemfile }} couchbase-${{ matrix.couchbase }}
steps:
- uses: actions/checkout@v3
- run: sudo apt-get update && sudo apt-get install libevent-dev libev-dev python-httplib2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle install
- run: bundle exec rspec
env:
ACTIVE_MODEL_VERSION: ${{ matrix.gemfile }}
COUCHBASE_VERSION: ${{ matrix.couchbase }}
BUNDLE_PATH: vendor/bundle
deploy:
needs: test
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2' # or your preferred Ruby version for deployment
bundler-cache: true
- run: bundle install
- run: gem build test-gem-publish.gemspec
- name: Get version from tag
id: get_version
run: echo "VERSION=$(echo ${GITHUB_REF#refs/tags/v})" >> $GITHUB_ENV
- name: Create Release
id: create_release
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./test-gem-publish-${{ env.VERSION }}.gem
asset_name: test-gem-publish-*.gem
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: gem push test-gem-publish-${{ env.VERSION }}.gem
env:
BUNDLE_PATH: vendor/bundle
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}