mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
name: ReleaseWorkflow
|
|
# - Gets artifacts from S3
|
|
# - Sends it to JFROG Artifactory
|
|
# - Adds them to the release assets
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
jobs:
|
|
ReleasePublish:
|
|
runs-on: [self-hosted, style-checker]
|
|
steps:
|
|
- name: Set envs
|
|
run: |
|
|
cat >> "$GITHUB_ENV" << 'EOF'
|
|
JFROG_API_KEY=${{ secrets.JFROG_KEY_API_PACKAGES }}
|
|
TEMP_PATH=${{runner.temp}}/release_packages
|
|
REPO_COPY=${{runner.temp}}/release_packages/ClickHouse
|
|
EOF
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v2
|
|
- name: Download packages and push to Artifactory
|
|
env:
|
|
run: |
|
|
rm -rf "$TEMP_PATH" && mkdir -p "$REPO_COPY"
|
|
cp -r "$GITHUB_WORKSPACE" "$REPO_COPY"
|
|
cd "$REPO_COPY"
|
|
python3 ./tests/ci/push_to_artifactory.py --release "${{ github.ref }}" \
|
|
--commit '${{ github.sha }}' --all
|
|
- name: Upload packages to release assets
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: ${{runner.temp}}/release_packages/*
|
|
overwrite: true
|
|
tag: ${{ github.ref }}
|
|
file_glob: true
|