0
1

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.

【Salesforce】sfdxコマンドを使ったリリース手順

Posted at

sfdxコマンドを使ったリリース手順を整理しました。

リリース用メタデータの作成

  • sfdxプロジェクトでsfdxコマンドを実行してリリース用メタデータを作成する
​sfdxコマンド.
sfdx force:source:convert -d ./リリース用メタデータ出力先のパス -x ./リリース用package.xmlのパス

  • リリース用メタデータ出力先のパスにリリース用メタデータが作成されたことを確認する

メタデータのリリース検証

前項のリリース用メタデータをsfdxコマンドでリリース検証する。
※事前にデプロイ先Salesforce組織の認証を実施しておくこと。

sfdxコマンド(ローカルテスト全実行の場合).
sfdx force:mdapi:deploy -d ./リリース用メタデータ出力先のパス -u リリース先環境のエイリアス --checkonly --testlevel RunLocalTests

sfdxコマンド(テストクラス指定実行の場合).
sfdx force:mdapi:deploy -d ./リリース用メタデータ出力先のパス -u リリース先環境のエイリアス --checkonly --testlevel RunSpecifiedTests -r Test01,Test02

メタデータのリリース検証状況の確認

Salesforceのリリース状況画面でメタデータのリリース検証状況を確認する

参考

■Salesforce CLI Command Reference
https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference_force_source.htm

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?