Skip to content

e2e

e2e #1

Workflow file for this run

name: e2e
on:
workflow_dispatch
permissions:
contents: read
jobs:
test:
name: e2e-test
runs-on: arc-octotail
steps:
- uses: actions/checkout@v4
- name: Env
run: |
env | sort
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Dockerized tests
run: |
docker run --rm -u 1000:1000 -v $(pwd)/e2e:/repo \
-e HUBBER_CREDS="${{ secrets.HUBBER_CREDS }}" \
-e HUBBER_KEY="${{ secrets.HUBBER_KEY }}" \
ghcr.io/rarescosma/octotail-e2e:latest ./run.sh $GITHUB_SHA