我有一个管道设置,可以自动处理/构建 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 文件,因为无论如何它都是在构建过程中生成的。我怎样才能解决这个问题?