0
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 3 years have passed since last update.

3分 GitHub Actions

Last updated at Posted at 2021-05-17

image.png
GitHub Actions のワークフローを実行するために、
必要な準備は、GitHub リポジトリの作成だけです。

早速、基本的な動きをする
ワークフローを作成してみましょう。

今回のサンプルは、GitHub Actions

  • いつ、どこで自動実行されるのか
  • どのようにリポジトリを操作するのか

を示しています。

最初のワークフロー作成

GitHub リポジトリから .github/workflows
ディレクトリ以下に、github-actions-demo.yml という
設定ファイルを作成します。
github-actions-demo.png
ページ最下部までスクロールし、
Create a new branchを選択後、Propose new file ( commit ) します。
commit-new-file.png

ワークフローファイル(github-actions-demo.yml)が
リポジトリのブランチに commit されると、GitHub Actions
ワークフローが、自動的に実行されます。

ワークフローの結果確認

GitHub リポジトリのメインページに移動し、
Actions タブをクリックします。
actions.png
左メニューから、自動実行されたワークフローを選択し、
メインコンテンツのワークフロー実行リストから、対象を選択します。
Add GitHub Actions example
add-github-actions-example.png
ジョブ一覧から、Explore-GitHub-Actions をクリックします。
Explorer-GitHub-Actions.png
それぞれのプロセスの実行経過が、ログで確認できます。
各ステップを展開すると、より詳細情報が表示されます。
Explore-GitHub-Actions.png

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