2023-01-02 06:25:17 -05:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
version:
|
|
|
|
description: "Version to release (e.g. v1.2.3)"
|
|
|
|
required: true
|
|
|
|
kind:
|
|
|
|
description: "Release kind"
|
|
|
|
type: choice
|
|
|
|
options: [minor, patch]
|
|
|
|
required: true
|
|
|
|
default: "minor"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
verify-inputs:
|
|
|
|
name: Verify inputs
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
env:
|
|
|
|
FULL_VERSION: ${{ inputs.version }}
|
|
|
|
outputs:
|
|
|
|
WITHOUT_V: ${{ steps.version-info.outputs.WITHOUT_V }}
|
|
|
|
PART_MAJOR: ${{ steps.version-info.outputs.PART_MAJOR }}
|
|
|
|
PART_MINOR: ${{ steps.version-info.outputs.PART_MINOR }}
|
|
|
|
PART_PATCH: ${{ steps.version-info.outputs.PART_PATCH }}
|
|
|
|
MAJOR: ${{ steps.version-info.outputs.MAJOR }}
|
|
|
|
MAJOR_MINOR: ${{ steps.version-info.outputs.MAJOR_MINOR }}
|
|
|
|
MAJOR_MINOR_PATCH: ${{ steps.version-info.outputs.MAJOR_MINOR_PATCH }}
|
|
|
|
RELEASE_BRANCH: ${{ steps.version-info.outputs.RELEASE_BRANCH }}
|
|
|
|
steps:
|
|
|
|
- name: Verify version
|
|
|
|
run: |
|
|
|
|
if [[ ! "${FULL_VERSION}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
|
|
echo "Version must be in the form of vX.Y.Z"
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-01-18 04:15:58 -05:00
|
|
|
|
2023-01-02 06:25:17 -05:00
|
|
|
- name: Extract version info
|
|
|
|
id: version-info
|
|
|
|
run: |
|
|
|
|
WITHOUT_V=${FULL_VERSION#v}
|
|
|
|
PART_MAJOR=${WITHOUT_V%%.*}
|
|
|
|
PART_MINOR=${WITHOUT_V#*.}
|
|
|
|
PART_MINOR=${PART_MINOR%%.*}
|
|
|
|
PART_PATCH=${WITHOUT_V##*.}
|
|
|
|
{
|
|
|
|
echo "WITHOUT_V=${WITHOUT_V}"
|
|
|
|
echo "PART_MAJOR=${PART_MAJOR}"
|
|
|
|
echo "PART_MINOR=${PART_MINOR}"
|
|
|
|
echo "PART_PATCH=${PART_PATCH}"
|
|
|
|
echo "MAJOR=${PART_MAJOR}"
|
|
|
|
echo "MAJOR_MINOR=${PART_MAJOR}.${PART_MINOR}"
|
|
|
|
echo "MAJOR_MINOR_PATCH=${PART_MAJOR}.${PART_MINOR}.${PART_PATCH}"
|
|
|
|
echo "RELEASE_BRANCH=release/v${PART_MAJOR}.${PART_MINOR}"
|
2023-03-21 07:20:27 -04:00
|
|
|
} | tee -a "$GITHUB_OUTPUT"
|
2023-01-02 06:25:17 -05:00
|
|
|
|
2023-01-06 05:49:55 -05:00
|
|
|
docs:
|
|
|
|
name: Create docs release
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
if: inputs.kind == 'minor'
|
|
|
|
needs: verify-inputs
|
2023-01-30 10:11:27 -05:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2023-02-27 04:49:52 -05:00
|
|
|
pull-requests: write
|
2023-01-06 05:49:55 -05:00
|
|
|
env:
|
|
|
|
VERSION: ${{ inputs.version }}
|
|
|
|
MAJOR_MINOR: ${{ needs.verify-inputs.outputs.MAJOR_MINOR }}
|
|
|
|
BRANCH: docs/${{ needs.verify-inputs.outputs.MAJOR_MINOR }}
|
|
|
|
steps:
|
2023-05-05 08:42:20 -04:00
|
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2023-01-06 05:49:55 -05:00
|
|
|
with:
|
|
|
|
ref: ${{ github.head_ref }}
|
2023-01-12 12:13:25 -05:00
|
|
|
|
2023-01-06 05:49:55 -05:00
|
|
|
- name: Create docs release
|
|
|
|
working-directory: docs
|
|
|
|
run: |
|
|
|
|
npm install
|
|
|
|
npm run docusaurus docs:version "${MAJOR_MINOR}"
|
2023-01-12 12:13:25 -05:00
|
|
|
|
2023-01-06 05:49:55 -05:00
|
|
|
- name: Create docs pull request
|
2023-03-22 12:57:47 -04:00
|
|
|
uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v4.2.4
|
2023-01-06 05:49:55 -05:00
|
|
|
with:
|
2023-01-26 06:13:10 -05:00
|
|
|
branch: ${{ env.BRANCH }}
|
2023-01-24 12:52:41 -05:00
|
|
|
base: main
|
2023-01-26 06:13:10 -05:00
|
|
|
title: "docs: add release ${{ env.VERSION }}"
|
2023-01-24 12:52:41 -05:00
|
|
|
body: |
|
2023-01-06 05:49:55 -05:00
|
|
|
:robot: *This is an automated PR.* :robot:
|
2023-01-12 12:13:25 -05:00
|
|
|
|
2023-01-26 06:13:10 -05:00
|
|
|
The PR is triggered as part of the automated release process of version ${{ env.VERSION }}.
|
2023-01-12 12:13:25 -05:00
|
|
|
It releases a new version of the documentation.
|
2023-01-26 06:13:10 -05:00
|
|
|
commit-message: "docs: add release ${{ env.VERSION }}"
|
2023-01-24 12:52:41 -05:00
|
|
|
committer: edgelessci <edgelessci@users.noreply.github.com>
|
2023-01-26 09:29:20 -05:00
|
|
|
labels: no changelog
|
2023-02-27 09:16:07 -05:00
|
|
|
# We need to push changes using a token, otherwise triggers like on:push and on:pull_request won't work.
|
2023-03-02 12:07:29 -05:00
|
|
|
token: ${{ !github.event.pull_request.head.repo.fork && secrets.CI_COMMIT_PUSH_PR || '' }}
|
2023-01-06 05:49:55 -05:00
|
|
|
|
2023-01-02 06:25:17 -05:00
|
|
|
prepare-release-branch:
|
|
|
|
name: Prepare release branch
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
needs: verify-inputs
|
2023-01-30 10:11:27 -05:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2023-01-02 06:25:17 -05:00
|
|
|
env:
|
|
|
|
BRANCH: ${{ needs.verify-inputs.outputs.RELEASE_BRANCH }}
|
|
|
|
steps:
|
2023-01-18 04:15:58 -05:00
|
|
|
- name: Checkout
|
2023-05-05 08:42:20 -04:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2023-01-02 06:25:17 -05:00
|
|
|
with:
|
|
|
|
ref: ${{ github.head_ref }}
|
2023-01-18 04:15:58 -05:00
|
|
|
|
2023-01-02 06:25:17 -05:00
|
|
|
- name: Create release branch
|
|
|
|
if: inputs.kind == 'minor'
|
|
|
|
run: |
|
|
|
|
git fetch
|
|
|
|
git pull
|
|
|
|
git checkout "${BRANCH}" || git checkout -B "${BRANCH}"
|
|
|
|
git push origin "${BRANCH}"
|
|
|
|
|
2023-03-31 06:41:32 -04:00
|
|
|
- name: Write version to version.txt
|
|
|
|
run: |
|
|
|
|
echo "${{ inputs.version }}" > version.txt
|
2023-04-14 12:53:50 -04:00
|
|
|
git config --global user.name "edgelessci"
|
|
|
|
git config --global user.email "edgelessci@users.noreply.github.com"
|
2023-03-31 06:41:32 -04:00
|
|
|
git add version.txt
|
2023-03-31 09:41:32 -04:00
|
|
|
git diff --staged --quiet || git commit -m "chore: update version.txt to ${{ inputs.version }}"
|
2023-03-31 06:41:32 -04:00
|
|
|
git push origin "${BRANCH}"
|
|
|
|
|
2023-01-02 06:25:17 -05:00
|
|
|
update-versions:
|
2023-01-05 08:36:30 -05:00
|
|
|
name: Update container image versions
|
2023-04-04 04:16:04 -04:00
|
|
|
needs: [verify-inputs, prepare-release-branch]
|
2023-01-02 06:25:17 -05:00
|
|
|
runs-on: ubuntu-22.04
|
2023-01-30 10:11:27 -05:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2023-02-27 04:49:52 -05:00
|
|
|
packages: read
|
2023-01-02 06:25:17 -05:00
|
|
|
env:
|
|
|
|
VERSION: ${{ inputs.version }}
|
|
|
|
WITHOUT_V: ${{ needs.verify-inputs.outputs.WITHOUT_V }}
|
|
|
|
steps:
|
2023-01-18 04:15:58 -05:00
|
|
|
- name: Checkout
|
2023-05-05 08:42:20 -04:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2023-01-02 06:25:17 -05:00
|
|
|
with:
|
|
|
|
ref: ${{ needs.verify-inputs.outputs.RELEASE_BRANCH }}
|
|
|
|
|
|
|
|
- name: Update enterprise image version
|
|
|
|
run: |
|
2023-04-13 11:44:23 -04:00
|
|
|
sed -i "s/defaultImage = \"v[0-9]\+\.[0-9]\+\.[0-9]\+\"/defaultImage = \"${VERSION}\"/" internal/config/image.go
|
|
|
|
git add internal/config/image.go
|
2023-01-02 06:25:17 -05:00
|
|
|
|
|
|
|
- name: Commit
|
|
|
|
run: |
|
2023-04-14 12:53:50 -04:00
|
|
|
git config --global user.name "edgelessci"
|
|
|
|
git config --global user.email "edgelessci@users.noreply.github.com"
|
2023-03-31 06:41:32 -04:00
|
|
|
git commit -m "deps: update images to ${VERSION}"
|
2023-01-02 06:25:17 -05:00
|
|
|
git push
|
|
|
|
|
|
|
|
os-image:
|
2023-01-05 08:36:30 -05:00
|
|
|
name: Build OS image
|
2023-01-02 06:25:17 -05:00
|
|
|
needs: [verify-inputs, update-versions]
|
|
|
|
uses: ./.github/workflows/build-os-image.yml
|
2023-01-30 10:11:27 -05:00
|
|
|
permissions:
|
|
|
|
id-token: write
|
|
|
|
contents: read
|
|
|
|
packages: read
|
2023-01-02 06:25:17 -05:00
|
|
|
secrets: inherit
|
|
|
|
with:
|
|
|
|
imageVersion: ${{ inputs.version }}
|
|
|
|
isRelease: true
|
|
|
|
stream: "stable"
|
|
|
|
ref: ${{ needs.verify-inputs.outputs.RELEASE_BRANCH }}
|
|
|
|
|
2023-01-05 08:36:30 -05:00
|
|
|
update-hardcoded-measurements:
|
|
|
|
name: Update hardcoded measurements (in the CLI)
|
2023-02-27 04:49:52 -05:00
|
|
|
needs: [verify-inputs, os-image]
|
2023-01-30 10:11:27 -05:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2023-01-05 08:36:30 -05:00
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
env:
|
|
|
|
VERSION: ${{ inputs.version }}
|
|
|
|
WITHOUT_V: ${{ needs.verify-inputs.outputs.WITHOUT_V }}
|
|
|
|
steps:
|
2023-01-18 04:15:58 -05:00
|
|
|
- name: Checkout
|
2023-05-05 08:42:20 -04:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2023-01-05 08:36:30 -05:00
|
|
|
with:
|
|
|
|
ref: ${{ needs.verify-inputs.outputs.RELEASE_BRANCH }}
|
|
|
|
|
|
|
|
- name: Setup Go environment
|
2023-04-04 05:06:30 -04:00
|
|
|
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
|
2023-01-05 08:36:30 -05:00
|
|
|
with:
|
2023-05-11 08:14:15 -04:00
|
|
|
go-version: "1.20.4"
|
2023-01-05 08:36:30 -05:00
|
|
|
cache: true
|
|
|
|
|
|
|
|
- name: Build generateMeasurements tool
|
|
|
|
working-directory: internal/attestation/measurements/measurement-generator
|
|
|
|
run: go build -o generate -tags=enterprise .
|
|
|
|
|
|
|
|
- name: Update hardcoded measurements
|
|
|
|
working-directory: internal/attestation/measurements
|
|
|
|
run: |
|
|
|
|
./measurement-generator/generate
|
|
|
|
git add measurements_enterprise.go
|
|
|
|
|
|
|
|
- name: Commit
|
|
|
|
run: |
|
2023-04-14 12:53:50 -04:00
|
|
|
git config --global user.name "edgelessci"
|
|
|
|
git config --global user.email "edgelessci@users.noreply.github.com"
|
2023-01-05 08:36:30 -05:00
|
|
|
git commit -m "attestation: hardcode measurements for ${VERSION}"
|
|
|
|
git push
|
2023-01-06 05:49:55 -05:00
|
|
|
|
|
|
|
tag-release:
|
|
|
|
name: Tag release
|
2023-02-13 07:58:34 -05:00
|
|
|
needs: [verify-inputs, update-hardcoded-measurements]
|
2023-01-06 05:49:55 -05:00
|
|
|
runs-on: ubuntu-22.04
|
2023-01-30 10:11:27 -05:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2023-01-06 05:49:55 -05:00
|
|
|
env:
|
|
|
|
VERSION: ${{ inputs.version }}
|
|
|
|
steps:
|
2023-01-18 04:15:58 -05:00
|
|
|
- name: Checkout
|
2023-05-05 08:42:20 -04:00
|
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
2023-01-06 05:49:55 -05:00
|
|
|
with:
|
|
|
|
ref: ${{ needs.verify-inputs.outputs.RELEASE_BRANCH }}
|
|
|
|
|
|
|
|
- name: Tag release
|
|
|
|
run: |
|
2023-04-14 12:53:50 -04:00
|
|
|
git config --global user.name "edgelessci"
|
|
|
|
git config --global user.email "edgelessci@users.noreply.github.com"
|
2023-01-06 05:49:55 -05:00
|
|
|
git tag -a "${VERSION}" -m "Release ${VERSION}"
|
|
|
|
git push origin "refs/tags/${VERSION}"
|
|
|
|
|
|
|
|
draft-release-cli:
|
|
|
|
name: Draft release (CLI)
|
|
|
|
needs: [verify-inputs, tag-release]
|
|
|
|
uses: ./.github/workflows/release-cli.yml
|
2023-01-30 10:11:27 -05:00
|
|
|
permissions:
|
|
|
|
actions: read
|
|
|
|
contents: write
|
|
|
|
id-token: write
|
2023-04-04 04:16:04 -04:00
|
|
|
packages: write
|
2023-01-06 05:49:55 -05:00
|
|
|
secrets: inherit
|
|
|
|
with:
|
|
|
|
ref: "refs/tags/${{ inputs.version }}"
|