Skip to content

Use remote setup-docker action with arm64/v8 support #21

Use remote setup-docker action with arm64/v8 support

Use remote setup-docker action with arm64/v8 support #21

Workflow file for this run

on:
push:
branches:
- 'main'
tags:
- 'smart-guessr/v*'
paths:
- smart-guessr/**
- .github/workflows/smart-guessr.yml
- .github/workflows/_docker-build-push.yml
pull_request:
paths:
- smart-guessr/**
- .github/workflows/smart-guessr.yml
- .github/workflows/_docker-build-push.yml
name: Test and docker (smart-guessr)
defaults:
run:
working-directory: smart-guessr
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Run tests
run: bun test --timeout 15000
if: success() || failure()
docker:
name: Docker build and docker push
needs:
- test
if: |
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled')
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: smart-guessr
docker-arm-host: ${{ secrets.ARM_RUNNER_HOSTNAME }}

Check failure on line 51 in .github/workflows/smart-guessr.yml

View workflow run for this annotation

GitHub Actions / Test and docker (smart-guessr)

Invalid workflow file

The workflow is not valid. .github/workflows/smart-guessr.yml (Line: 51, Col: 24): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.ARM_RUNNER_HOSTNAME .github/workflows/smart-guessr.yml (Line: 52, Col: 28): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.ARM_RUNNER_KEY

Check failure on line 51 in .github/workflows/smart-guessr.yml

View workflow run for this annotation

GitHub Actions / Test and docker (smart-guessr)

Invalid workflow file

The workflow is not valid. .github/workflows/smart-guessr.yml (Line: 51, Col: 24): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.ARM_RUNNER_HOSTNAME .github/workflows/smart-guessr.yml (Line: 52, Col: 28): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.ARM_RUNNER_KEY
docker-arm-host-key: ${{ secrets.ARM_RUNNER_KEY }}