Skip to content

.github/workflows/e2e.yml #42

.github/workflows/e2e.yml

.github/workflows/e2e.yml #42

Workflow file for this run

on:
workflow_dispatch:
inputs:
token:
description: 'Hetzner Cloud API token'
required: true
jobs:
e2e:
name: e2e
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.22'
- uses: actions/checkout@v2
- run: ssh-keygen -t rsa -q -f "$HOME/.ssh/id_rsa" -N ""
- run: make e2e branch=${{ github.base_ref || github.ref_name }}
env:
HCLOUD_TOKEN: ${{ github.event.inputs.token }}