3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

自作GitHub Actionsを公開するときのタグ付け

Last updated at Posted at 2020-05-19

自作したGitHub Actionsを公開するときにv1.0.0などとタグ付けをします。

こちらのドキュメントに書いてあるように、Github Actionsを利用する側は@v1という風にメジャーバージョンだけを指定して使うといった使い方がよく使われます。


steps:    
  - uses: actions/setup-node@74bc508 # Reference a specific commit
  - uses: actions/setup-node@v1      # Reference the major version of a release   
  - uses: actions/setup-node@v1.2    # Reference a minor version of a release  
  - uses: actions/setup-node@master  # Reference a branch

この説明だけ見ると、@v1と指定するとv1.x.xの最新版が自動で使われそうに見えます。

しかし、GitHub Actionsを提供している側がなにもしないと@v1と指定してもnot foundになってしまいます。GitHub Actionsが自動で最新バージョンを見つけてくれるわけではないのです!(2020/05/19現在)

GitHub Actionのversioningについてはこちらのドキュメントに記載があります。

GitHub Actionsを提供している側は、v1, v1.1などといったタグを用意しなければなりません。(たとえばactions/scriptはこうなっています)そして、マイナーバージョンやパッチパージョンを上げるたびにこれらのタグを付け替えなければならないのです。すごいめんどくさいですね・・

これを解決するGitHub Actionsがあり、https://github.com/nowactions/update-majorver です。
これを使うと自動でメジャーバージョンのタグを更新してくれるみたいですので、GitHub Actionsを公開している人は使うと便利かもしれません。

GitHub Actionsを使う側の人は、使おうとしているGithub ActionsのGitHubのreleaseを見て、v1とかv1.xに対応しているか確認して指定すると間違いはないです。

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?