Implement bindings for CNS Unregister Volume #4255
Workflow file for this run
This file contains hidden or 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: Build | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
schedule: | |
- cron: 0 1 * * * | |
workflow_dispatch: | |
concurrency: | |
group: govmomi-build-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
artifacts: | |
name: Build Snapshot Release (no upload) | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 # for CHANGELOG | |
- name: Setup Go | |
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
with: | |
go-version-file: go.mod | |
- name: Restore Go Cache | |
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-1.22-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go-1.22- | |
- name: Create CHANGELOG | |
env: | |
IMAGE: quay.io/git-chglog/git-chglog | |
# https://quay.io/repository/git-chglog/git-chglog from tag v0.14.2 | |
IMAGE_SHA: 998e89dab8dd8284cfff5f8cfb9e9af41fe3fcd4671f2e86a180e453c20959e3 | |
run: | | |
# use a pseudo tag to only include changes since last release | |
NEXT_TAG=$(git describe --abbrev=0 --tags)-next | |
docker run --rm -v $PWD:/workdir ${IMAGE}@sha256:${IMAGE_SHA} --next-tag ${NEXT_TAG} -o RELEASE_CHANGELOG.md --sort semver --tag-filter-pattern '^v[0-9]+' ${NEXT_TAG} | |
- name: Archive CHANGELOG | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
with: | |
name: CHANGELOG | |
path: | | |
./RELEASE_CHANGELOG.md | |
retention-days: 1 | |
- name: Build Artifacts | |
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
version: latest | |
# Snapshot will disable push/release. | |
args: release --clean --snapshot --release-notes RELEASE_CHANGELOG.md | |
- name: Verify git clean | |
shell: bash | |
run: | | |
if [[ -z "$(git status --porcelain)" ]]; then | |
echo "${{ github.repository }} up to date." | |
else | |
echo "${{ github.repository }} is dirty." | |
echo "::error:: $(git status)" | |
exit 1 | |
fi | |
# Make artifacts available for inspection. | |
# https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/storing-and-sharing-data-from-a-workflow | |
- name: Archive Artifacts | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
with: | |
name: dist | |
# Upload some artifacts for introspection to keep storage size small. | |
path: | | |
dist/govc_*x86_64.tar.gz | |
dist/vcsim_*x86_64.tar.gz | |
dist/checksums.txt | |
retention-days: 1 |