Bump up vineyard version to v0.20.1 #896
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
# Copyright 2020-2023 Alibaba Group Holding Limited. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Cut Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
release: | |
runs-on: ${{ matrix.os }} | |
if: ${{ github.repository == 'v6d-io/v6d' }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Cut a latest release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest" | |
draft: false | |
prerelease: true | |
title: "vineyard latest: pre-release for latest vineyard" | |
- name: Extract tag name | |
id: tag | |
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'v6d-io/v6d' }} | |
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
- name: Cut a versioned release | |
uses: "marvinpinto/action-automatic-releases@latest" | |
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'v6d-io/v6d' }} | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: ${{ steps.tag.outputs.TAG }} | |
draft: false | |
prerelease: false | |
title: "vineyard ${{ steps.tag.outputs.TAG }}" | |
- name: Make the repository tarball | |
run: | | |
./misc/git-archive-submodules.sh | |
- name: Upload wheels to tagged release | |
uses: svenstaro/upload-release-action@v2 | |
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'v6d-io/v6d' }} | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: v6d-*.* | |
file_glob: true | |
tag: ${{ steps.tag.outputs.TAG }} | |
prerelease: false | |
overwrite: true | |
body: "vineyard repository tarball ${{ steps.tag.outputs.TAG }}" | |
- uses: actions/upload-artifact@v3 | |
if: ${{ github.event_name == 'workflow_dispatch'}} | |
with: | |
name: vineyard-tarball-${{ github.sha }} | |
path: v6d-*.* |