Nightly Build (centos7/quay) #1400
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: Nightly Build (centos7/quay) | |
on: | |
schedule: | |
- cron: '30 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Configure Host | |
run: | | |
chmod +x Setup_Host.sh | |
./Setup_Host.sh | |
- name: Pull Docker Image From Quay | |
run: docker pull quay.io/gluster/centos7-gluster-build | |
- name: Running Build in Centos7 Container | |
run: docker run --name container_gluster -v /build-out:/out quay.io/gluster/centos7-gluster-build | |
- name: Upload Artifactory | |
uses: actions/upload-artifact@v2 | |
with: | |
name: gluster-rpms | |
path: /build-out/*.rpm | |
retention-days: 1 |