mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-31 15:11:27 +00:00
59 lines
2.1 KiB
YAML
59 lines
2.1 KiB
YAML
on:
|
|
push:
|
|
# Sequence of patterns matched against refs/tags
|
|
tags:
|
|
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
|
|
|
name: Create Release And Upload assets
|
|
|
|
jobs:
|
|
create-realese:
|
|
name: Create Release
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Get version
|
|
id: get_version
|
|
run: |
|
|
TAG=$(basename ${GITHUB_REF})
|
|
VERSION=${TAG/v/}
|
|
wget https://raw.githubusercontent.com/jumpserver/installer/master/quick_start.sh
|
|
sed -i "s@VERSION=dev@VERSION=v${VERSION}@g" quick_start.sh
|
|
echo "::set-output name=TAG::$TAG"
|
|
echo "::set-output name=VERSION::$VERSION"
|
|
- name: Create Release
|
|
id: create_release
|
|
uses: release-drafter/release-drafter@v5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
config-name: release-config.yml
|
|
version: ${{ steps.get_version.outputs.TAG }}
|
|
tag: ${{ steps.get_version.outputs.TAG }}
|
|
- name: Upload Quick Start Script
|
|
id: upload-release-quick-start-shell
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
|
|
asset_path: ./quick_start.sh
|
|
asset_name: quick_start.sh
|
|
asset_content_type: application/text
|
|
|
|
build-and-release:
|
|
needs: create-realese
|
|
name: Build and Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build it and upload
|
|
uses: jumpserver/action-build-upload-assets@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ needs.create-realese.outputs.upload_url }}
|