1
0

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のWindowsイメージでbashを使う方法

Last updated at Posted at 2023-02-08

想定読者

  • 普段はGitHub Actionsのホステッド ランナーでUbuntuなどLinux系のイメージを利用している
  • Windowsイメージを使うのは初めて
  • WindowsでもLinuxのコマンドをそのまま使いたい

GitHub Actionsのホステッドランナーとは

  • ワークフローを実行する仮想環境のこと
  • runs-on: で指定する
  • Ubuntu, Windows, Macが指定できる

課題

  • 異なるホステッドランナーで共通のコマンドを実行する場合、WindowsとUbuntu, Macでデフォルトで実行すると互換性がないため、実行エラーになる
  • Windowsイメージでは何も指定しない場合、pwsh(パワーシェル)が使われます
  • Linux/macOSイメージでは何も指定しない場合、bashが使われます

解決策

  • stepのshellでbashを指定することでWindowsイメージでもLinuxのコマンドをそのまま利用できます
  • ちなみにWindowsイメージでbashが使えるのはGitは最初から入っているからのようです。

Windowsでbashシェルを指定すると、Windows用Gitに含まれるbashシェルが使用されます。

runs-on: windows-latest
    steps:
      - uses: actions/checkout@v3
      - name: messi is 🐐
        shell: bash
        run: |
          messi='🐐'
          echo $messi

参考

さいごに

もしこの記事が参考になったら、いいねが貰えると更新の励みになります🙇‍♂️

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?