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

golangでAzureDevOps#2

Last updated at Posted at 2019-12-09

前回作ったDevOpsプロジェクトをベースに更新の導入部分についてまとめていきます。

やり方

DevOpsプロジェクトへ移動

Azure PortalからDevOpsProjectを選択します。
スクリーンショット 2019-12-02 16.05.59.png

プロジェクトを選択します。
スクリーンショット 2019-12-02 16.06.14.png

「Project homepage」というリンクがあるので選択します。
スクリーンショット 2019-12-02 16.06.29.png

左のスライドメニューから「Repos -> Files」の順に選択します。
スクリーンショット 2019-12-02 16.07.23.png

git urlをコピーします。
スクリーンショット 2019-12-02 16.07.55.png

コマンドを実行します。

git clone git@ssh.dev.azure.com:v3/sample/pod042/pod042

下記エラーが出た場合はssh-keyを登録します。
スクリーンショット 2019-12-02 16.09.00.png

ssh key 登録

下記コマンドでssh keyを表示&コピーします。

cat ~/.ssh/id_rsa.pub

DevOpsプロジェクトページのユーザー情報に設定します。
スクリーンショット 2019-12-02 16.10.06.png

「+ New Key」からウィンドウを開いてペーストします。
名前は適当なものを入れましょう。
スクリーンショット 2019-12-02 16.11.07.png

再度git cloneコマンドをし、下記の様に表示されたら成功です。
スクリーンショット 2019-12-02 16.11.48.png

適当なエディタで開いて
Application/app.goの「Home」関数を適用な文言に編集してみます。
スクリーンショット 2019-12-02 16.17.17.png

commit -> git pushすると
DevOps側でBuilds -> Releasesとジョブが走り公開されます。
スクリーンショット 2019-12-02 16.47.52.png
以上
お疲れ様でした。

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?