3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

.githubをpushしているのにgithub actionsが使えない

Last updated at Posted at 2024-03-27

初めに

前回Reactで作成したアプリをGit Hubにpushしたタイミングで、Firebaseに自動デプロイするという仕組みを構築中です。
まずは手動でWorkflowを実行したいと思い、Git Hubにpusjしてみましたが、リポジトリのActionタブを確認しても、作成したファイルが選択できない状態でした。

問題点

以下の記事を参考に進めていました。
https://qiita.com/Teach/items/d2c4d7bec98228df1807
フォルダ構成を以下のように構築しました。
study-record/github-actions-sample/.github/workflows/helloworld.yml
(study-recordはプロジェクト名)

解決策

本来「.github」フォルダはディレクトリ直下に置かないと正常に機能しません。
ですが今回勘違いしてディレクトリ直下に「github-actions-sample」フォルダを作成して、その中に「.github」フォルダを配置していました。
正しい構造は以下のとおりです。
study-record/.github/workflows/helloworld.yml

終わりに

かなりレベルの低いミスをしてしまいました...
おそらくちゃんと調べられたら簡単に解決するミスなのですが、それを解決できなかった自分の調査力はまだまだだなと痛感...
これから開発を行なっていくにあたって、自分で解決する力はとても重要なので調べる力もスキルアップしていきたいと感じました!
多分難しい言葉や内容を読んでも難しい記事に対して、かなり抵抗がある方だと思うので理解することを諦めず根気よく読み込まないといけないですね!

3
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?