Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
play-circle

GitHub Action

GBDK Builder

1.0.3

GBDK Builder

play-circle

GBDK Builder

Build gbdbk projects

Installation

Copy and paste the following snippet into your .yml file.

              

- name: GBDK Builder

uses: wujood/gbdk-2020-github-builder@1.0.3

Learn more about this action in wujood/gbdk-2020-github-builder

Choose a version

GBDK GitHub Action Builder

Example Workflow

This action builds gbdk projects with gcc.

Inputs

subdirectory

The subfolder where the sources are located. Default is "./".

Example usage

name: Example Workflow
on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    name: Build gbdk project
    steps:
    - name: Checkout project
    - uses: actions/checkout@v2
    - name: Build
      uses: wujood/gbdk-2020-github-builder
      with:
        subdirectory: ./test-sources