-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (42 loc) · 1.43 KB
/
release.yaml
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
name: Build the ruby gem in a container and publish it on Github Package Repository
on:
release:
types:
- published
jobs:
release-ruby-gem:
runs-on: ubuntu-latest
steps:
- name: Checkout project code
uses: actions/checkout@v4
- name: Setup Docker builder
uses: docker/setup-buildx-action@v3
- name: Build container for build target
uses: docker/build-push-action@v5
with:
context: .
file: ./deployment/Containerfile
target: build
push: false
load: true
tags: linuxfrorg/board-sse-linuxfr.org:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Publish gem to Github Package Repository
uses: addnab/docker-run-action@v3
env:
GEM_HOST_API_KEY: "${{secrets.RUBYGEM_PUSH_KEY}}"
OWNER: ${{ github.repository_owner }}
with:
image: linuxfrorg/board-sse-linuxfr.org:${{ github.sha }}
options: >-
-e OWNER
-e GEM_HOST_API_KEY
run: |
set -eux
IFS=$'\n\t'
mkdir -p "${HOME}/.local/share/gem"
touch "${HOME}/.local/share/gem/credentials"
chmod 0600 "${HOME}/.local/share/gem/credentials"
printf -- "---\n:rubygem: ${GEM_HOST_API_KEY}\n" > "${HOME}/.local/share/gem/credentials"
gem push --KEY rubygem *.gem