Skip to content

Commit

Permalink
t3
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Jan 13, 2024
1 parent 7e0e567 commit c964643
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/drevops-publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
publish-docs:
runs-on: ubuntu-latest
container: drevops/ci-runner:23.12.0
# container: drevops/ci-runner:23.12.0

steps:
- name: Checkout code
Expand All @@ -27,6 +27,9 @@ jobs:
name: id_rsa_docs_publish_ssh_private_key
known_hosts: github.com

- name: Setup Ahoy
run: os=$(uname -s | tr [:upper:] [:lower:]) && architecture=$(case $(uname -m) in x86_64 | amd64) echo "amd64" ;; aarch64 | arm64 | armv8) echo "arm64" ;; *) echo "amd64" ;; esac) && sudo wget -q https://github.com/ahoy-cli/ahoy/releases/latest/download/ahoy-bin-$os-$architecture -O /usr/local/bin/ahoy && sudo chown $USER /usr/local/bin/ahoy && chmod +x /usr/local/bin/ahoy

- name: Build and test docs
run: |
cd .drevops/docs
Expand Down

0 comments on commit c964643

Please sign in to comment.