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 1 year has passed since last update.

背景

azd deploy してるアプリを CI/CD する為に、pipelines で azd install 方法を調べた結果の記録

結論

  • azd cli は現状、GitHub actions 用のみ?
GitHub Actions であれば、以下で行けそう
- task: setup-azd@0
displayName: Install azd
  • ということで、curl で install
Azzure Pipelines 用
- task: Bash@3
  inputs:
    targetType: 'inline'
    script: |
      curl -fsSL https://aka.ms/install-azd.sh | bash
  displayName: 'Install azd'

状況

  • task に cli で検索しても見つからない
    image.png

  • intelisence 使っても、見つからず
    image.png

  • Document にも存在はしない
    image.png

あとがき

Release では以下のように書いてあるので、対応してたんじゃないのか?と思うんだけど・・よくわからず

Starter CI/CD workflows for GitHub Actions (.github/) and Azure Pipelines (.azdo/) so you can test against real Azure resources on every commit

link 切れしてた、awesome-azd を見つけたが、何故か .azdo/ については存在していない。

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?