Update pypa/gh-action-pypi-publish digest to a712d98 #308
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PHP | |
# Test and package your PHP project. | |
# Add steps that run tests, save build artifacts, deploy, and more: | |
# https://docs.microsoft.com/azure/devops/pipelines/languages/php | |
trigger: | |
- main | |
pool: | |
vmImage: ubuntu-latest | |
variables: | |
phpVersion: 7.2 | |
steps: | |
- script: | | |
sudo update-alternatives --set php /usr/bin/php$(phpVersion) | |
sudo update-alternatives --set phar /usr/bin/phar$(phpVersion) | |
sudo update-alternatives --set phpdbg /usr/bin/phpdbg$(phpVersion) | |
sudo update-alternatives --set php-cgi /usr/bin/php-cgi$(phpVersion) | |
sudo update-alternatives --set phar.phar /usr/bin/phar.phar$(phpVersion) | |
php -version | |
displayName: 'Use PHP version $(phpVersion)' | |
- script: composer install --no-interaction --prefer-dist | |
displayName: 'composer install' |