urlzap
ActionsTags
(2)This Github Action will automatically generate your static URLs using urlzap
. Paired with Github Page actions, you can automate your whole urlzap
pipeline 🤖
To use it, call brunoluiz/urlzap-github-action@v1
on your Github Action workflow. The example below:
- Generates the static URL files
- Deploy to Github Pages, under
gh-pages
branch (using this action).
name: urlzap
on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
name: Generate & Deploy
steps:
# Checkout your repo locally
- uses: actions/checkout@v2
# Generate files using this action
- name: Generate
uses: brunoluiz/urlzap-github-action@v1
# Deplloy in Github Pages (you can use others)
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: .
A project using the above config is brunoluiz/_. An example output is https://brunoluiz.net/_/yt.
The with
portion of the workflow can be configured with the following params.
Key | Required | Default | Description |
---|---|---|---|
version |
No | latest | Defines which urlzap version to use |
config |
No | ./config.yml | Defines where URLZap config file is located |
urlzap is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.