-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into akashsinghal/fixvulnct
- Loading branch information
Showing
6 changed files
with
139 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
name: publish-dev-assets | ||
|
||
on: | ||
schedule: | ||
- cron: '30 8 * * 0' # early morning (08:30 UTC) every Sunday | ||
workflow_dispatch: | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
contents: read | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | ||
- name: prepare | ||
id: prepare | ||
run: | | ||
DATE=$(date +'%Y%m%d') | ||
COMMIT=${{ github.sha }} | ||
REPOSITORY=ghcr.io/${{ github.repository }} | ||
CHART_REPOSITORY=${REPOSITORY}-chart-dev | ||
VERSION=dev.${DATE}.${COMMIT:0:7} | ||
SEM_VERSION=0-${VERSION} | ||
SEM_VERSION_ROLLING=0-dev | ||
REPOSITORY_PLUGINS=${REPOSITORY}-dev | ||
REPOSITORYBASE=${REPOSITORY}-base-dev | ||
REPOSITORYCRD=${REPOSITORY}-crds-dev | ||
echo ::set-output name=version::${VERSION} | ||
echo ::set-output name=semversion::${SEM_VERSION} | ||
echo ::set-output name=semversionrolling::${SEM_VERSION_ROLLING} | ||
echo ::set-output name=chartrepo::${CHART_REPOSITORY} | ||
echo ::set-output name=ref::${REPOSITORY_PLUGINS} | ||
echo ::set-output name=baseref::${REPOSITORYBASE} | ||
echo ::set-output name=crdref::${REPOSITORYCRD} | ||
- name: docker login | ||
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: docker build ratify-crds | ||
run: | | ||
docker buildx create --use | ||
docker buildx build --build-arg KUBE_VERSION="1.27.7" -f crd.Dockerfile --platform linux/amd64,linux/arm64,linux/arm/v7 --label org.opencontainers.image.revision=${{ github.sha }} -t ${{ steps.prepare.outputs.crdref }}:${{ steps.prepare.outputs.version }} -t ${{ steps.prepare.outputs.crdref }} --push ./charts/ratify/crds | ||
- name: docker build ratify base | ||
run: | | ||
docker buildx create --use | ||
docker buildx build -f ./httpserver/Dockerfile \ | ||
--platform linux/amd64,linux/arm64,linux/arm/v7 \ | ||
--build-arg LDFLAGS="-X github.com/deislabs/ratify/internal/version.Version=$(TAG)" \ | ||
--label org.opencontainers.image.revision=${{ github.sha }} \ | ||
-t ${{ steps.prepare.outputs.baseref }}:${{ steps.prepare.outputs.version }} \ | ||
-t ${{ steps.prepare.outputs.baseref }} \ | ||
--push . | ||
- name: docker build ratify with plugin | ||
run: | | ||
docker buildx create --use | ||
docker buildx build -f ./httpserver/Dockerfile \ | ||
--platform linux/amd64,linux/arm64,linux/arm/v7 \ | ||
--build-arg build_cosign=true \ | ||
--build-arg build_sbom=true \ | ||
--build-arg build_licensechecker=true \ | ||
--build-arg build_schemavalidator=true \ | ||
--build-arg build_vulnerabilityreport=true \ | ||
--build-arg LDFLAGS="-X github.com/deislabs/ratify/internal/version.Version=$(TAG)" \ | ||
--label org.opencontainers.image.revision=${{ github.sha }} \ | ||
-t ${{ steps.prepare.outputs.ref }}:${{ steps.prepare.outputs.version }} \ | ||
-t ${{ steps.prepare.outputs.ref }} \ | ||
--push . | ||
- name: replace version | ||
run: | | ||
sed -i '/^ repository:/c\ repository: ghcr.io/deislabs/ratify-dev' charts/ratify/values.yaml | ||
sed -i '/^ crdRepository:/c\ crdRepository: ghcr.io/deislabs/ratify-crds-dev' charts/ratify/values.yaml | ||
sed -i '/^ tag:/c\ tag: ${{ steps.prepare.outputs.version }}' charts/ratify/values.yaml | ||
- name: helm package | ||
run: | | ||
helm package ./charts/ratify --version ${{ steps.prepare.outputs.semversion }} | ||
helm package ./charts/ratify --version ${{ steps.prepare.outputs.semversionrolling }} | ||
- name: helm push | ||
run: | | ||
helm push ratify-${{ steps.prepare.outputs.semversion }}.tgz oci://${{ steps.prepare.outputs.chartrepo }} | ||
helm push ratify-${{ steps.prepare.outputs.semversionrolling }}.tgz oci://${{ steps.prepare.outputs.chartrepo }} | ||
- name: clear | ||
if: always() | ||
run: | | ||
rm -f ${HOME}/.docker/config.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters