Skip to content
This repository has been archived by the owner on Oct 29, 2022. It is now read-only.

main.yml #6

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

main.yml #6

wants to merge 1 commit into from

Conversation

nihaonas
Copy link

This is a basic workflow to help you get started with Actions

name: CI

Controls when the workflow will run

on:

Triggers the workflow on push or pull request events but only for the master branch

push:
branches: [ master ]
pull_request:
branches: [ master ]

A workflow run is made up of one or more jobs that can run sequentially or in parallel

jobs:

This workflow contains a single job called "build"

build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
  # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
  - uses: actions/checkout@v2

  - name: Chmod
    run: chmod 0755 ./redpill_tool_chain.sh

  - name: Build docker image
    run: ./redpill_tool_chain.sh build bromolow-7.0.1-42218

  - name: Create dsm image
    run: ./redpill_tool_chain.sh auto bromolow-7.0.1-42218

  - uses: actions/upload-artifact@v2
    with:
      name: ds3615
      path: ./images

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant