From a3078ebf0c7ccc951509780e3d41a479c08ce88e Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Fri, 28 Aug 2020 14:14:38 +0300 Subject: [PATCH] Move release and PR creation to the GitHub Actions --- .github/workflows/create-pr.yml | 33 +++++++++++++ .github/workflows/create-release.yml | 18 ++++++++ azure-pipelines/build-python-packages.yml | 14 ++++++ .../templates/publish-release-steps.yml | 46 +++++++++++++++++++ helpers | 2 +- 5 files changed, 112 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/create-pr.yml create mode 100644 .github/workflows/create-release.yml create mode 100644 azure-pipelines/templates/publish-release-steps.yml diff --git a/.github/workflows/create-pr.yml b/.github/workflows/create-pr.yml new file mode 100644 index 0000000..5a4f5a7 --- /dev/null +++ b/.github/workflows/create-pr.yml @@ -0,0 +1,33 @@ +name: Create Pull Request +on: + workflow_dispatch: + +defaults: + run: + shell: pwsh + +jobs: + create_pr: + name: Create Pull Request + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: true + + - name: Create versions-manifest.json + run: | + ./helpers/packages-generation/manifest-generator.ps1 -RepositoryFullName "$env:GITHUB_REPOSITORY" ` + -GitHubAccessToken "${{secrets.GITHUB_TOKEN}}" ` + -OutputFile "./versions-manifest.json" ` + -ConfigurationFile "./config/python-manifest-config.json" + - name: Create GitHub PR + run: | + $formattedDate = Get-Date -Format "MM/dd/yyyy" + ./helpers/github/create-pull-request.ps1 ` + -RepositoryFullName "$env:GITHUB_REPOSITORY" ` + -AccessToken "${{secrets.GITHUB_TOKEN}}" ` + -BranchName "update-versions-manifest-file" ` + -CommitMessage "Update versions-manifest" ` + -PullRequestTitle "[versions-manifest] Update for release from ${formattedDate}" ` + -PullRequestBody "Update versions-manifest.json for release from ${formattedDate}" \ No newline at end of file diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 0000000..6096edc --- /dev/null +++ b/.github/workflows/create-release.yml @@ -0,0 +1,18 @@ +name: Create release +on: + repository_dispatch: + types: [create-release] + +jobs: + create_release: + name: Create release ${{ github.event.client_payload.ToolVersion }} + runs-on: ubuntu-latest + steps: + - name: Create release for Python ${{ github.event.client_payload.ToolVersion }} + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.event.client_payload.TagName }} + release_name: ${{ github.event.client_payload.ToolVersion }} + body: ${{ github.event.client_payload.ReleaseBody }} \ No newline at end of file diff --git a/azure-pipelines/build-python-packages.yml b/azure-pipelines/build-python-packages.yml index b5c4540..0f28e35 100644 --- a/azure-pipelines/build-python-packages.yml +++ b/azure-pipelines/build-python-packages.yml @@ -116,3 +116,17 @@ stages: Architecture: x86 jobs: - template: /azure-pipelines/templates/test-job.yml + +- stage: Publish_Release + dependsOn: [Test_Python_MacOS, Test_Python_Ubuntu_1604, Test_Python_Ubuntu_1804, Test_Python_Ubuntu_2004, Test_Python_x64_Windows, Test_Python_x86_Windows] + jobs: + - deployment: Publish_Release + pool: + name: Azure Pipelines + vmImage: ubuntu-18.04 + environment: 'Get Available Tools Versions - Publishing Approval' + strategy: + runOnce: + deploy: + steps: + - template: /azure-pipelines/templates/publish-release-steps.yml diff --git a/azure-pipelines/templates/publish-release-steps.yml b/azure-pipelines/templates/publish-release-steps.yml new file mode 100644 index 0000000..772ec62 --- /dev/null +++ b/azure-pipelines/templates/publish-release-steps.yml @@ -0,0 +1,46 @@ +steps: +- download: none + +- checkout: self + submodules: true + +- task: DownloadPipelineArtifact@2 + inputs: + source: 'current' + path: $(Build.BinariesDirectory) + +- task: PowerShell@2 + displayName: 'Create release Python $(VERSION)' + inputs: + TargetType: inline + script: | + $tagName = "$(VERSION)-$(Build.BuildId)" + $releaseBody = "Python $(VERSION)" + ./helpers/github/create-release.ps1 -RepositoryFullName "$(Build.Repository.Name)" ` + -AccessToken "$(GITHUB_TOKEN)" ` + -ToolVersion "$(VERSION)" ` + -TagName "$tagName" ` + -ReleaseBody "$releaseBody" ` + -EventType "$(EVENT_TYPE)" +- task: GitHubRelease@1 + displayName: 'Upload release assets' + inputs: + gitHubConnection: 'Github Connection' + action: edit + tag: '$(VERSION)-$(Build.BuildId)' + title: '$(VERSION)' + releaseNotesSource: inline + releaseNotesInline: '$(RELEASE_NOTES_CONTENT)' + assets: '$(Build.BinariesDirectory)/*/*' + assetUploadMode: replace + addChangeLog: false + +- task: PowerShell@2 + displayName: 'Trigger "Create Pull Request" workflow' + inputs: + TargetType: inline + script: | + Import-Module (Join-Path (Get-Location).Path "github-api.psm1") + $gitHubApi = Get-GitHubApi -RepositoryFullName "$(Build.Repository.Name)" -AccessToken "$(GITHUB_TOKEN)" + $gitHubApi.CreateWorkflowDispatch("$(WORKFLOW_FILE_NAME)", "$(WORKFLOW_DISPATCH_REF)", "$(INPUTS)") + workingDirectory: '$(Build.SourcesDirectory)/helpers/github' \ No newline at end of file diff --git a/helpers b/helpers index 68072be..f8f76ca 160000 --- a/helpers +++ b/helpers @@ -1 +1 @@ -Subproject commit 68072bedefb41436c6b70ddfa9adb8e631a3b6cf +Subproject commit f8f76caff1878d249468db3d55f045c0b707493b