File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Rebuild Images
2+ on :
3+ schedule :
4+ - cron : ' 0 0 1 * *'
5+ workflow_dispatch :
6+ jobs :
7+ build-docker-images :
8+ if : github.ref == 'refs/heads/master'
9+ runs-on : ubuntu-22.04
10+ steps :
11+ - uses : actions/checkout@v4
12+ - name : Build Docker images
13+ env :
14+ DOCKER_USERNAME : ${{ secrets.DOCKER_USERNAME }}
15+ DOCKER_PASSWORD : ${{ secrets.DOCKER_PASSWORD }}
16+ run : |
17+ curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash -
Original file line number Diff line number Diff line change 1+ name : Continuous Integration
2+ on : push
3+ jobs :
4+ build-docker-images :
5+ runs-on : ubuntu-22.04
6+ steps :
7+ - uses : actions/checkout@v4
8+ - name : Build Docker images
9+ env :
10+ DOCKER_USERNAME : ${{ secrets.DOCKER_USERNAME }}
11+ DOCKER_PASSWORD : ${{ secrets.DOCKER_PASSWORD }}
12+ run : |
13+ curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash -
You can’t perform that action at this time.
0 commit comments