Use non-green item icon if space exploration is installed #622
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- run: sudo apt-get install composer | |
- run: composer install | |
- run: touch .env | |
- run: echo FACTORIO_API_KEY=${{ secrets.FACTORIO_API_KEY }} >> .env | |
- run: echo DISCORD_WEBHOOK=${{ secrets.DISCORD_WEBHOOK }} >> .env | |
- run: echo LOCK_PASSWORD=${{ secrets.LOCK_PASSWORD }} >> .env | |
- run: echo WUBE_REMEMBER_TOKEN="${{ secrets.WUBE_REMEMBER_TOKEN }}" >> .env | |
# 2.0 | |
- run: php artisan update:details --all | |
# 1.1 | |
- run: php app.php ci | |
- run: php app.php webhook | |
# all | |
- run: php artisan send:newsletter --ci | |
# - run: git config user.name "github-actions[bot]" | |
# - run: git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
# | |
# - run: git add -A | |
# - run: git commit -m "Increment minor version(s)" || true | |
# - run: git push |