try to publish artifacts
Mockband / build (push) Successful in 16s Details

This commit is contained in:
Neale Pickett 2024-01-04 21:23:21 -07:00
parent 9bbeb1136c
commit af0c088401
1 changed files with 10 additions and 3 deletions

View File

@ -4,7 +4,14 @@ jobs:
build:
runs-on:
- arduino
env:
PACKAGE_API_TOKEN: ${PACKAGE_API_TOKEN}
steps:
- run: git clone $GITHUB_SERVER_URL/$GITHUB_REPOSITORY .
- run: .gitea/build.sh
- run: .gitea/publish.sh out/*
- name: check out repository
run: git clone $GITHUB_SERVER_URL/$GITHUB_REPOSITORY .
- name: build
run: .gitea/build.sh
- name: publish
env:
PACKAGE_API_TOKEN: ${{ secrets.PACKAGE_API_TOKEN }}
run: .gitea/publish.sh out/*