Skip to content

GitHub Pages

GitHub Pages #5

Workflow file for this run

name: GitHub Pages
on:
workflow_dispatch:
inputs:
url:
description: 'URL'
required: true
default: 'https://example.com'
permissions:
contents: read
pages: write
id-token: write
jobs:
job1:
runs-on: ubuntu-latest
steps:
- name: Prepare
run: |
mkdir ./out
curl ${{ github.event.inputs.url }} --output archive.7z
7z x archive.7z -o./out
find ./out -type f -exec sed -i 's/sekaictf-2022/sekaictf-2023/g' {} +
- uses: actions/upload-pages-artifact@v1
with:
path: ./out
- id: deployment
uses: actions/deploy-pages@main