Merge pull request #1153 from tkdchen/adjust-renovatebot-schedule #77
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: Distribute latest image | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
build-push-develop-images: | |
if: github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/') | |
name: Build and push develop images | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt-get install -y make | |
- uses: actions/checkout@v3 | |
with: | |
repository: Nitrate/containers | |
- run: make all-images engine=docker | |
- run: | | |
echo "${{ secrets.quay_token }}" | \ | |
docker login -u "${{ secrets.quay_username }}" --password-stdin quay.io | |
make push-all engine=docker |