From 03e9bb6ae5c691e5faf7b16dba1d91e93c70d5a8 Mon Sep 17 00:00:00 2001 From: ulrischa Date: Mon, 16 Dec 2024 17:37:35 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8b4bfa7..5493ec7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,4 +1,4 @@ -name: Use Bookmarklet Generator +name: Test Bookmarklet Generator on: push: @@ -8,11 +8,14 @@ on: - 'raw.js' jobs: - generate-bookmarklet: + bookmarklet-job: runs-on: ubuntu-latest - + steps: - - name: Use Bookmarklet Generator + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Use Bookmarklet Generator Action uses: ulrischa/js_to_bookmarklet_action@v1 with: source_js_file: 'raw.js' @@ -20,3 +23,9 @@ jobs: target_element_id: 'target' commit_message: 'Update bookmarklet link' + - name: Debug Files and Environment + run: | + ls -la . + cat raw.js + cat index.htm + shell: bash