Skip to content

Commit 9912a4d

Browse files
authored
Merge pull request #11 from ironbeer/dev
Updated github workflow and added support aws/s3 datastore
2 parents 0e8b121 + 69c84eb commit 9912a4d

15 files changed

+41
-529
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

-62
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

-17
This file was deleted.

.github/ISSUE_TEMPLATE/doc.yml

-29
This file was deleted.

.github/ISSUE_TEMPLATE/enhancement.yml

-33
This file was deleted.

.github/ISSUE_TEMPLATE/feature.yml

-34
This file was deleted.

.github/auto-comment.yml

-6
This file was deleted.

.github/config.yml

-68
This file was deleted.

.github/dependabot.yml

-10
This file was deleted.

.github/workflows/codeql-analysis.yml

-40
This file was deleted.

.github/workflows/docker-image.yml

-34
This file was deleted.

.github/workflows/release.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
release:
10+
name: Release
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout Code
14+
uses: actions/checkout@v2
15+
16+
- name: Setup QEMU
17+
id: qemu
18+
uses: docker/setup-qemu-action@v1
19+
with:
20+
platforms: amd64,arm64
21+
22+
- name: Setup Docker Buildx
23+
uses: docker/setup-buildx-action@v1
24+
25+
- name: Login to GitHub Container Registry
26+
uses: docker/login-action@v1
27+
with:
28+
registry: ghcr.io
29+
username: ${{ github.actor }}
30+
password: ${{ secrets.GITHUB_TOKEN }}
31+
32+
- name: Build and push
33+
uses: docker/build-push-action@v2
34+
with:
35+
context: .
36+
platforms: linux/amd64,linux/arm64
37+
tags: ghcr.io/${{ github.repository }}:${{ github.ref_name }}
38+
push: true

0 commit comments

Comments
 (0)