Skip to content

fix dockerfile

fix dockerfile #3

Workflow file for this run

name: E2E Tests
on: [push]
jobs:
build-docker-image:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export
uses: docker/build-push-action@v5
with:
context: .
tags: vechain/thor:${{ github.sha }}
outputs: type=docker,dest=/tmp/vechain-thor.tar
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: vechain-thor-image
path: /tmp/vechain-thor.tar
retention-days: 7
run-tests:
runs-on: ubuntu-latest
needs: build

Check failure on line 35 in .github/workflows/e2e-tests.yaml

View workflow run for this annotation

GitHub Actions / E2E Tests

Invalid workflow file

The workflow is not valid. .github/workflows/e2e-tests.yaml (Line: 35, Col: 12): Job 'run-tests' depends on unknown job 'build'.
name: Run E2E tests
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: darrenvechain/thor-e2e-tests
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: vechain-thor-image
path: /tmp
- name: Setup Node JS
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Load image
run: |
docker load --input /tmp/vechain-thor.tar
docker image ls -a