Skip to content

Commit

Permalink
link to install source; apparently need GH pages explicit workflow (s…
Browse files Browse the repository at this point in the history
…igh)
  • Loading branch information
traceypooh committed Feb 24, 2024
1 parent 94e2e1f commit bc08b30
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
on: push
jobs:
# Build job
build:
# <Not provided for brevity>
# At a minimum this job should upload artifacts using actions/upload-pages-artifact

# Deploy job
deploy:
# Add a dependency to the build job
needs: build

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4 # or specific "vX.X.X" version tag for this action
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ The _brilliant_ `consul-template` will be used as "glue" between `consul` and `c
## Setup and run
This will "bootstrap" your cluster with a private, unique `NOMAD_TOKEN`,
and `sudo podman run` a new container with the hind service into the background.
((source))[https://raw.githubusercontent.com/internetarchive/hind/podman/bin/install-hind.sh]

```bash
curl -sS https://internetarchive.github.io/hind/bin/install-hind.sh | sudo sh
Expand Down

0 comments on commit bc08b30

Please sign in to comment.