Revert "Created create-release.yml"

This reverts commit f71e10c168.
This commit is contained in:
AsafMah 2022-04-05 13:09:02 +03:00
Родитель 1d6564440f
Коммит 86ed75537f
3 изменённых файлов: 50 добавлений и 55 удалений

55
.github/workflows/create-release.yml поставляемый
Просмотреть файл

@ -1,55 +0,0 @@
name: Bump and create release draft
on:
workflow_dispatch:
inputs:
version:
description: 'Version in format x.x.x'
required: true
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Update data
run: npm version ${{ github.event.inputs.version }}
working-directory: azure-kusto-data
- name: Update ingest
run: npm version ${{ github.event.inputs.version }}
working-directory: azure-kusto-ingest
- name: Pin version
run: npm install azure-kusto-data@${{ github.event.inputs.version }} --save-exact
working-directory: azure-kusto-ingest
- name: Commit Pin
run: |
git config --global user.name 'Asaf mahlev'
git config --global user.email 'AsafMah@users.noreply.github.com'
git commit -am "Bump ${{ github.event.inputs.version }} and Pin"
- name: Pushing to the protected branch 'master'
uses: CasperWA/push-protected@v2
with:
token: ${{ secrets.PUSH_TOKEN }}
branch: master
unprotect_reviews: true
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "v${{ github.event.inputs.version }}"
draft: true
title: "${{ github.event.inputs.version }}"
- name: Unpin version
run: npm install "file:../azure-kusto-data" --save-exact
working-directory: azure-kusto-ingest
- name: Commit UnPin
run: |
git config --global user.name 'Asaf mahlev'
git config --global user.email 'AsafMah@users.noreply.github.com'
git commit -am "Unpin ${{ github.event.inputs.version }}"
- name: Pushing to the protected branch 'master'
uses: CasperWA/push-protected@v2
with:
token: ${{ secrets.PUSH_TOKEN }}
branch: master
unprotect_reviews: true

25
.github/workflows/pin-dependency.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,25 @@
name: Pin azure-kusto-data dependency
on: workflow_dispatch
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Create report file
run: npm install azure-kusto-data@$(npm pkg get version | tr -d '"') --save-exact
working-directory: azure-kusto-ingest
- name: Commit report
run: |
cat azure-kusto-ingest/package.json azure-kusto-ingest/package-lock.json
git config --global user.name 'Asaf mahlev'
git config --global user.email 'AsafMah@users.noreply.github.com'
git commit -am "Pin azure-kusto-ingest version to azure-kusto-data@$(npm pkg get version | tr -d '"')"
- name: Pushing to the protected branch 'master'
uses: CasperWA/push-protected@v2
with:
token: ${{ secrets.PUSH_TOKEN }}
branch: master
unprotect_reviews: true

25
.github/workflows/unpin-dependency.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,25 @@
name: Unpin azure-kusto-data dependency
on: workflow_dispatch
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Create report file
run: npm install azure-kusto-data --save-exact
working-directory: azure-kusto-ingest
- name: Commit report
run: |
cat azure-kusto-ingest/package.json azure-kusto-ingest/package-lock.json
git config --global user.name 'Asaf mahlev'
git config --global user.email 'AsafMah@users.noreply.github.com'
git commit -am "Unpin azure-kusto-ingest version to azure-kusto-data latest"
- name: Pushing to the protected branch 'master'
uses: CasperWA/push-protected@v2
with:
token: ${{ secrets.PUSH_TOKEN }}
branch: master
unprotect_reviews: true