From 4362782e24c21acbf714f9c155031f3660b07a98 Mon Sep 17 00:00:00 2001 From: Jon Carstens Date: Wed, 4 Sep 2024 08:35:46 -0600 Subject: [PATCH] tester --- .github/tester/action.yml | 9 +++++++++ .github/workflows/ci.yml | 13 +++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 .github/tester/action.yml diff --git a/.github/tester/action.yml b/.github/tester/action.yml new file mode 100644 index 0000000..b669a39 --- /dev/null +++ b/.github/tester/action.yml @@ -0,0 +1,9 @@ +name: Tester + +runs: + using: composite + steps: + - name: Test CLI + shell: bash + run: | + gh auth token diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f3c783..75f436f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,13 @@ permissions: contents: read jobs: + quick-test: + runs-on: ubuntu-22.04 + steps: + - uses: ./tester + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + get-br-dependencies: runs-on: ubuntu-22.04 steps: @@ -44,10 +51,12 @@ jobs: needs: [build-system] if: github.ref_type == 'tag' runs-on: ubuntu-22.04 + permissions: + contents: write steps: - uses: actions/checkout@v4 - uses: gridpoint-com/actions-nerves-system@v1 - name: Deploy nerves_system uses: ./.actions/deploy-system - with: - github-token: ${{ secrets.ARTIFACT_GITHUB_TOKEN }} + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}