Skip to content

Update nightly.yml

Update nightly.yml #5

Workflow file for this run

name: Nightly Build
on:
push:
branches:
- main
jobs:
build:
steps:

Check failure on line 10 in .github/workflows/nightly.yml

View workflow run for this annotation

GitHub Actions / Nightly Build

Invalid workflow file

The workflow is not valid. .github/workflows/nightly.yml (Line: 10, Col: 5): Required property is missing: runs-on
- name: Get current time
uses: 1466587594/get-current-time@v2
id: current-time
with:
format: YYYY-MM-DD--HH
- name: Checkout code
uses: actions/checkout@v2
# Install QEMU-based emulator
- name: Install QEMU
run: apt-get update && apt-get install -y qemu-user-static
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v2
with:
platforms: linux/amd64,linux/arm64
push: true
tags: |
pepperlabs/peppermint:nightly