gpt4 book ai didi

GitHub Action 发布标签

转载 作者:行者123 更新时间:2023-12-04 15:18:16 25 4
gpt4 key购买 nike

在 GitHub 中创建发布后,我触发了 GitHub 操作。在这个 Action 中,我想从发布中获取一些数据,这可能吗?例如,我想获取标签,然后将此标签用作 NuGet 包版本。有没有办法从工作中获取这些数据?

最佳答案

您可以使用 ${{ 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* 的新标签时,将执行此操作。
触发 Action :
git push origin v1.0.0

关于GitHub Action 发布标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63932728/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com