「GitHub Actions の set-output を sed で $GITHUB_OUTPUT 形式に置換 - stefafafan の fa は3つです」
github.blogという記事を今日みて、 echo "::set-output name=hoge::fuga" みたいなことをやってたのがdeprecatedになると知った。以下のドキュメントを参考に置換すればOKとのことだったので、せっかくなのでsedでやってみた。 docs.github.com find .github/workflows -type f | xargs sed -i '' -e 's/echo "::set-output name=\(.*\)::\(.*\)"/echo "\1=\2" >> $GITHUB_OUTPUT/g' ちなみにはじめは sed -i -…
コンテンツ文字数:0 文字
見出し数(H2/H3タグ):0 個
閲覧数:80 件
2022-10-13 17:08:13