CSSファイルの自動処理/構築を備えたパイプラインのセットアップがあります。実行中にこのエラーが発生することがありますgit ftp push
:
致命的: ダーティ リポジトリ: コミットされていない変更があります。終了しています...
bitbucket-pipelines.yml
image: php:7.2.7
pipelines:
branches:
staging:
- step:
name: Deploy to staging
deployment: staging
script:
- curl -sL https://deb.nodesource.com/setup_8.x | bash -
- apt-get install -y nodejs
- npm install
- npm run build-css
- apt-get update
- apt-get -qq install git-ftp
- git status -uno --porcelain
- git ftp push --user $FTP_username --passwd $FTP_password ftp://ftp.website.com
からの出力 git status -uno --porcelain
git status -uno --porcelain
M style.css
過去に、style.css をコミットしました (現在は自動的にビルドされています)--しかし、ビルド中に生成されるので、ローカルの style.css ファイルを無視したいと考えています。どうすればこれを修正できますか?