Skip to content

Commit 7d099c7

Browse files
authored
Revert "Issue 46 update readme on release" (#81)
1 parent a6421d6 commit 7d099c7

File tree

2 files changed

+12
-57
lines changed

2 files changed

+12
-57
lines changed

.github/workflows/release-tag.yaml

Lines changed: 0 additions & 54 deletions
This file was deleted.

.github/workflows/release-workflow.yaml renamed to .github/workflows/release.yaml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,28 @@
1-
name: release-workflow
1+
name: release
22

33
on:
44
push:
55
branches:
6-
- feature/release-workflow
6+
- feature/release-workflow
7+
tags:
8+
- "v*.*.*"
9+
env:
10+
REGISTRY: ghcr.io
11+
IMAGE_NAME: ${{ github.repository }}
12+
FLAGD_VERSION: v0.0.3
713

814
jobs:
915
build:
1016
runs-on: ubuntu-latest
1117
steps:
1218
- name: Checkout
1319
uses: actions/checkout@v2
20+
with:
21+
submodules: recursive
1422
- name: Get the version
1523
id: get_version
1624
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
17-
25+
1826
- uses: actions/setup-go@v3
1927
with:
2028
go-version: '1.17.11'
@@ -23,6 +31,7 @@ jobs:
2331
go mod tidy
2432
make controller-gen
2533
IMG=ghcr.io/open-feature/open-feature-operator:${GITHUB_REF#refs/*/} make release-manifests
34+
2635
- name: Release
2736
uses: softprops/action-gh-release@v1
2837
with:

0 commit comments

Comments
 (0)