git.delta.rocks / unique-network / refs/commits / db9f499a6bf2

difftreelog

source

.github/workflows/main.yml488 Bsourcehistory
1name: Docker build23on:4  push:5    branches: [ master ]6  schedule:7    - cron: '* 1 * * *'89jobs:10  build:11    runs-on: ubuntu-latest12    steps:13    - uses: actions/checkout@v214    - name: Docker login15      run: docker login -u gzusetech -p "$TOKEN"16      env:17        TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }}18    - name: Build image19      run: docker build -t usetechcorp/nft_parachain .20    - name: Push the image to Docker hub21      run: docker push usetechcorp/nft_parachain:latest22