Skip to content

gnuton is testing out GitHub Actions 🚀 #15

gnuton is testing out GitHub Actions 🚀

gnuton is testing out GitHub Actions 🚀 #15

name: Containers
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
build-job:
name: build firmware
runs-on: ubuntu-latest
container:
image: gnuton/asuswrt-merlin-toolchains-docker:latest
env:
MERLINUPDATE: y
MODEL: rt-ax28u
SDK: src-rt-5.02axhnd.675x
options: --user root
volumes:
- ${{ github.workspace }}:/home/docker
steps:
- run: |
pwd
ls /home/docker
ls
echo $HOME
cd "release/$SDK"
make "$MODEL"
echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
echo "🖥️ The workflow is now ready to test your code on the runner."
#ls ${{ github.workspace }}
echo "🍏 This job's status is ${{ job.status }}."