chore(release): 0.1.1 #1
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
name: Publish Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Azure Pipelines Action | |
uses: Azure/pipelines@v1 | |
with: | |
azure-devops-project-url: https://dev.azure.com/Libot-Mipui-Org/osm-sync-tracker | |
azure-pipeline-name: 'build-and-push-to-ACR' | |
azure-devops-token: ${{ secrets.AZURE_DEVOPS_TOKEN }} | |
publish_release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code for CHANGELOG.md | |
uses: actions/checkout@v2 | |
- name: Publish Release to Github | |
uses: softprops/action-gh-release@v1 | |
with: | |
body_path: CHANGELOG.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |