File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
manifests/container-storage-interface Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -16,3 +16,4 @@ parameters:
1616 attachment-type : " paravirtualized"
1717reclaimPolicy : Delete
1818volumeBindingMode : WaitForFirstConsumer
19+ allowVolumeExpansion : true
You can’t perform that action at this time.
0 commit comments