publish-dev-assets #14
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
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@a5ac7e51b41094c92402da3b24376905380afc29 | |
- 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@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.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.29.2" -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_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 |