-
Notifications
You must be signed in to change notification settings - Fork 3
46 lines (39 loc) · 1.18 KB
/
cd.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
---
name: "Buchungsstreber: Release Pipeline"
on:
push:
tags:
- v*
jobs:
publish:
name: Publish artifacts
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Recreate Ruby Bundler cache
uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-bundler-${{ hashFiles('**/Gemfile*') }}
restore-keys: |
${{ runner.os }}-bundler-
- name: Install dependencies
run: bundle install --path ./vendor/bundle
- name: Run tests
run: bundle exec rspec
- name: Publish artifacts to Nexus
run: |
mkdir -p ~/.gem
AUTH=$(echo -n "$NEXUS_USER:$NEXUS_PASS" | base64)
/bin/echo -e ":url: $NEXUS_URL\n:authorization: Basic $AUTH\n" > ~/.gem/nexus
bundle exec rake build
bundle exec gem nexus pkg/buchungsstreber-*.gem
env:
NEXUS_PASS: ${{ secrets.NEXUS_PASS }}
NEXUS_URL: ${{ secrets.NEXUS_URL }}
NEXUS_USER: ${{ secrets.NEXUS_USER }}