Skip to content

Commit 076fd0f

Browse files
committed
release to open source
1 parent 52e0931 commit 076fd0f

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/release.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
# Build and publish artifacts for a release
6+
tags:
7+
- "v*.*.*"
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
14+
- name: Checkout
15+
uses: actions/checkout@v2
16+
17+
- name: Set up QEMU
18+
uses: docker/setup-qemu-action@v1
19+
with:
20+
platforms: arm64
21+
22+
- name: Set up Docker Buildx
23+
uses: docker/setup-buildx-action@v1
24+
25+
- name: Log into GitHub Container Registry
26+
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${GITHUB_ACTOR,,} --password-stdin
27+
28+
- name: Build Image
29+
run: OSS_REGISTRY="ghcr.io/oracle" VERSION="${{ github.ref_name }}" make image
30+
31+
- name: Push Image
32+
run: OSS_REGISTRY="ghcr.io/oracle" VERSION="${{ github.ref_name }}" make docker-push-all

manifests/container-storage-interface/storage-class.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ parameters:
1616
attachment-type: "paravirtualized"
1717
reclaimPolicy: Delete
1818
volumeBindingMode: WaitForFirstConsumer
19+
allowVolumeExpansion: true

0 commit comments

Comments
 (0)