Skip to content

Commit 6cee2f3

Browse files
authored
Merge pull request #302 from fluxcd/fix-ci
Fix release workflow
2 parents d546956 + 2dce217 commit 6cee2f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ jobs:
6666
docker pull ghcr.io/fluxcd/source-controller:${{ steps.prep.outputs.VERSION }}
6767
- name: Generate release manifests
6868
run: |
69-
mkdir -p bin/release
70-
kustomize build ./config/crd > ./bin/release/source-controller.crds.yaml
71-
kustomize build ./config/manager > ./bin/release/source-controller.deployment.yaml
69+
mkdir -p config/release
70+
kustomize build ./config/crd > ./config/release/source-controller.crds.yaml
71+
kustomize build ./config/manager > ./config/release/source-controller.deployment.yaml
7272
- name: Create release
7373
uses: ncipollo/release-action@v1
7474
with:
7575
prerelease: true
76-
artifacts: "bin/release/*.yaml"
76+
artifacts: "config/release/*.yaml"
7777
artifactContentType: "text/plain"
7878
body: |
7979
[CHANGELOG](https://github.com/fluxcd/source-controller/blob/main/CHANGELOG.md)

0 commit comments

Comments
 (0)