-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Create workflow update-cli-docs.yml (#1531)
* ci: Create workflow update-cli-docs.yml * ci: change slack webhook url
- Loading branch information
1 parent
8e089d7
commit b5842a4
Showing
1 changed file
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: Update CLI Docs | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update-cli-docs: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
git-sha: ${{ steps.update.outputs.git-sha }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: lacework/docs_lw | ||
token: ${{ secrets.TOKEN }} | ||
path: docs_lw | ||
- name: Run update script | ||
id: update | ||
env: | ||
GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }} | ||
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} | ||
working-directory: "docs_lw/docusaurus" | ||
run: | | ||
git remote set-url origin [email protected]:lacework/docs_lw.git | ||
sudo apt-get update -y | ||
sudo apt-get install gpg-agent -y | ||
echo "$GPG_SECRET_KEY" | base64 --decode | gpg --import --no-tty --batch --yes | ||
scripts/codefresh/update-cli-docs.sh | ||
output=$(git rev-parse HEAD) | ||
echo "git-sha=${output}" >> $GITHUB_OUTPUT | ||
- name: Notify Slack for Approval | ||
uses: slackapi/[email protected] | ||
with: | ||
payload: | | ||
{ | ||
"attachments": [ | ||
{ | ||
"color": "#4db748", | ||
"blocks": [ | ||
{ | ||
"type": "section", | ||
"text": { | ||
"type": "mrkdwn", | ||
"text": "*Lacework CLI documentation update*\nNew documentation for the Lacework CLI has been generated and it is waiting for approval. :hand::skin-tone-4: @docs :party-dinosaur: :go__lw:\n*GitHub Workflow*\nhttps://github.com/lacework/go-sdk/actions/runs/${{ github.run_id }}\n*Git SHA*\n${{ steps.update.outputs.git-sha }}" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_DOC_PULL_REQUESTS }} | ||
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK | ||
deploy-cli-docs: | ||
runs-on: ubuntu-latest | ||
needs: update-cli-docs | ||
environment: cli-docs | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: lacework/docs_lw | ||
token: ${{ secrets.TOKEN }} | ||
path: docs_lw | ||
- name: Deploy CLI docs | ||
working-directory: "docs_lw/docusaurus" | ||
env: | ||
GIT_SHA: ${{ needs.update-cli-docs.outputs.git-sha }} | ||
NETLIFY_API_KEY: ${{ secrets.NETLIFY_API_KEY }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y jq | ||
scripts/codefresh/netlify-site-deploy.sh |