mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
try variable properly
This commit is contained in:
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
@@ -44,13 +44,11 @@ jobs:
|
||||
# 2. Build and Push App Image
|
||||
build-app-image:
|
||||
needs: unit-integration-test
|
||||
env:
|
||||
TEST_IMAGE: docker.pkg.github.com/CloudFire-LLC/cloudfire-ce/cloudfire:${GITHUB_SHA::8}
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Build Docker Image
|
||||
run: docker build -t $TEST_IMAGE -f Dockerfile .
|
||||
run: docker build -t docker.pkg.github.com/CloudFire-LLC/cloudfire-ce/cloudfire:${GITHUB_SHA::8} -f Dockerfile .
|
||||
- name: Push Docker Image
|
||||
run: docker push $TEST_IMAGE
|
||||
|
||||
@@ -58,7 +56,7 @@ jobs:
|
||||
docker-compose-up:
|
||||
needs: build-app-image
|
||||
env:
|
||||
TEST_IMAGE: docker.pkg.github.com/CloudFire-LLC/cloudfire-ce/cloudfire:${GITHUB_SHA::8}
|
||||
TEST_IMAGE: "docker.pkg.github.com/CloudFire-LLC/cloudfire-ce/cloudfire:${GITHUB_SHA::8}"
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
Reference in New Issue
Block a user