Tweaks for automated build process #5
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
name: Publish | |
on: | |
push: | |
jobs: | |
publish: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
extensions: dom, curl, libxml, mbstring, zip | |
ini-values: error_reporting=E_ALL | |
tools: composer:v2 | |
coverage: none | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.16 | |
- name: Install Composer dependencies | |
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader | |
- name: Install Node dependencies | |
run: npm install | |
- name: Prepare Laravel Application | |
run: | | |
cp .env.example .env | |
- name: Run install | |
run: php artisan native:install --force --no-interaction | |
- name: Inject App Icon | |
run: cp public/images/icon.png vendor/nativephp/electron/resources/js/build/icon.png | |
- name: Run build | |
run: php artisan native:publish --no-interaction | |
env: | |
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }} | |
CSC_LINK: ${{ secrets.CSC_LINK }} | |
NATIVEPHP_APPLE_ID: ${{ secrets.NATIVEPHP_APPLE_ID }} | |
NATIVEPHP_APPLE_ID_PASS: ${{ secrets.NATIVEPHP_APPLE_ID_PASS }} | |
NATIVEPHP_APPLE_TEAM_ID: ${{ secrets.NATIVEPHP_APPLE_TEAM_ID }} | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NATIVEPHP_UPDATER_ENABLED: true |