Skip to content

NO-ISSUE: Synchronize From Upstream Repositories #890

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,6 @@ jobs:
echo IMAGE_TAG="snapshot" >> $GITHUB_ENV
fi

- name: Create a draft release
uses: softprops/action-gh-release@v2
id: release
if: startsWith(github.ref, 'refs/tags')
env:
GITHUB_TOKEN: ${{ github.token }}
with:
name: ${{ env.IMAGE_TAG }}
draft: true

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

Expand All @@ -58,6 +48,10 @@ jobs:
IMAGE_REPO: quay.io/operator-framework/olm
PKG: github.com/operator-framework/operator-lifecycle-manager

# The below steps depend on a image being present in a image registry
# as well as existence of a release on GitHub which are not
# being created by goreleaser when run against anything other than a tag.
# So we only run the steps below for tags.
- name: Generate quickstart release manifests
if: startsWith(github.ref, 'refs/tags')
run: make release RELEASE_VERSION=${{ env.IMAGE_TAG }} IMAGE_REPO=quay.io/operator-framework/olm
Expand Down