【发布时间】:2021-01-04 00:48:41
【问题描述】:
在 GitHub 中创建发布后,我会触发 GitHub 操作。在这个动作中,我想从发布中获取一些数据,这可能吗?例如,我想获取标签,然后将此标签用作 NuGet 包版本。有没有办法从作业中获取这些数据?
【问题讨论】:
标签: github yaml devops release github-actions
在 GitHub 中创建发布后,我会触发 GitHub 操作。在这个动作中,我想从发布中获取一些数据,这可能吗?例如,我想获取标签,然后将此标签用作 NuGet 包版本。有没有办法从作业中获取这些数据?
【问题讨论】:
标签: github yaml devops release github-actions
您可以使用${{ github.ref }} 或${{ github.event.release.tag_name }}
例子:
name: Release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: NameOfYourArtifact
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: TODO
draft: true
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
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: NameOfYourArtifact.exe
asset_name: NameOfYourArtifact.exe
asset_content_type: application/octet-stream
此操作在创建一个名为 v* 的新标签时执行。
触发动作:
git push origin v1.0.0
【讨论】:
release_name 中使用它,参考/标签会自动修剪,如果您想在自定义步骤中使用它,您可能需要使用正则表达式提取它。