Skip to content

Commit

Permalink
feat: add redis to build
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Ellison committed Jun 28, 2023
1 parent e91ee95 commit 44a22ef
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/auto-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ on:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-latest
services:
redis:
image: redis:latest
ports:
- 6379:6379
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -34,11 +39,15 @@ jobs:
with:
context: .
# platforms: linux/amd64,linux/arm64
container: redis # Use the Redis service container
push: false
load: true
tags: airwalk-digital/airview-mdx-deck
secrets: |
"FONTAWESOME_NPM_AUTH_TOKEN=${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}"
env:
REDIS_HOST: ${{ steps.redis-connection.outputs.host }}
REDIS_PORT: ${{ steps.redis-connection.outputs.port }}

- name: Release
env:
Expand Down

0 comments on commit 44a22ef

Please sign in to comment.