v1.1.0-rc1 #8
Workflow file for this run
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: CD | |
on: | |
release: | |
types: | |
- released | |
- prereleased | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-and-upload-cli-artifact: | |
strategy: | |
matrix: | |
include: | |
- arch: amd64 | |
os: linux | |
- arch: amd64 | |
os: darwin | |
- arch: arm64 | |
os: linux | |
- arch: arm64 | |
os: darwin | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
# Check version | |
- name: Check if version is semantic | |
run: echo "${{ github.ref_name }}" | grep -q -E '^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(-((0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(\.(0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(\+([0-9a-zA-Z-]+(\.[0-9a-zA-Z-]+)*))?$' | |
- name: Check if version is release or beta | |
run: | | |
if echo "${{ github.ref_name }}" | grep -q -E '^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$'; then | |
echo "IS_RELEASE=true" >> $GITHUB_ENV | |
else | |
echo "IS_RELEASE=false" >> $GITHUB_ENV | |
fi | |
# Build | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up go | |
uses: actions/setup-go@v4 | |
- name: Build cocli | |
run: | | |
CGO_ENABLED=0 GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make build-binary | |
cp bin/cocli cocli | |
cp bin/cocli bin/cocli-${{ matrix.os }}-${{ matrix.arch }} | |
# Upload to GitHub release | |
- name: Upload release artifact | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: bin/cocli-${{ matrix.os }}-${{ matrix.arch }} | |
# Upload to oss | |
- name: Install gzip | |
run: sudo apt-get update && sudo apt-get install -y gzip | |
- name: Build release metadata files | |
if: env.IS_RELEASE == 'true' | |
run: | | |
SHA256SUM=$(sha256sum cocli | awk '{print $1}' | xxd -r -p | base64) | |
echo "{\"Version\": \"${{ github.ref_name }}\", \"Sha256\": \"$SHA256SUM\"}" > ${{ matrix.os }}-${{ matrix.arch }}.json | |
- name: gzip cocli | |
run: gzip cocli | |
- name: Upload cocli to oss corresponding version | |
uses: tvrcgo/oss-action@master | |
with: | |
key-id: ${{ secrets.OSS_ACCESS_KEY_ID }} | |
key-secret: ${{ secrets.OSS_ACCESS_KEY_SECRET }} | |
region: oss-cn-hangzhou | |
bucket: coscene-download | |
assets: | | |
cocli.gz:/cocli/${{ github.ref_name }}/${{ matrix.os }}-${{ matrix.arch }}.gz | |
- name: Upload cocli to oss latest | |
if: env.IS_RELEASE == 'true' | |
uses: tvrcgo/oss-action@master | |
with: | |
key-id: ${{ secrets.OSS_ACCESS_KEY_ID }} | |
key-secret: ${{ secrets.OSS_ACCESS_KEY_SECRET }} | |
region: oss-cn-hangzhou | |
bucket: coscene-download | |
assets: | | |
cocli.gz:/cocli/latest/${{ matrix.os }}-${{ matrix.arch }}.gz | |
${{ matrix.os }}-${{ matrix.arch }}.json:/cocli/${{ matrix.os }}-${{ matrix.arch }}.json | |