From fea9eb14dc6a9d8dc91b691d052ae57891891ee3 Mon Sep 17 00:00:00 2001 From: Jan Luehr Date: Sun, 4 Aug 2024 19:47:41 +0200 Subject: [PATCH] Added workflow metadata --- .github/workflows/firmware.yml | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/.github/workflows/firmware.yml b/.github/workflows/firmware.yml index a60a42a..d496b2d 100644 --- a/.github/workflows/firmware.yml +++ b/.github/workflows/firmware.yml @@ -1,11 +1,17 @@ -steps: - - uses: actions/checkout@v4 - - uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1 - with: - ruby-version: '3.1' # Not needed with a .ruby-version file - - run: bundle install - - run: bundle exec rake - - uses: actions/upload-artifact@v4 - with: - name: firmware - path: bin/* +name: Generate firmware +run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 +on: [push] +jobs: + Build images: + runs-on: debian-12 + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1 + with: + ruby-version: '3.1' # Not needed with a .ruby-version file + - run: bundle install + - run: bundle exec rake + - uses: actions/upload-artifact@v4 + with: + name: firmware + path: bin/*