Skip to content

Commit

Permalink
separate workflow jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Joli Lui committed Jul 11, 2023
1 parent c57526d commit 22424c0
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 117 deletions.
127 changes: 10 additions & 117 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,129 +1,22 @@
name: CLI Release

on:
workflow_dispatch:
# schedule:
# - cron: '0 12 * * 2' # Runs every Tuesday at 12:00 PM (noon) ET
push:
tags:
- '*'

jobs:

checks:
runs-on: ubuntu-latest
outputs:
HAS_TAG: ${{ steps.check_tag.outputs.has_tag }}
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Check if commit has a new tag
id: check_tag
run: |
if git describe --tags --exact-match HEAD >/dev/null 2>&1; then
echo "has_tag=true" >> $GITHUB_OUTPUT
echo true
else
echo "has_tag=false" >> $GITHUB_OUTPUT
echo false
fi
release:
runs-on: ubuntu-latest
needs: checks
outputs:
CLI_VERSION: ${{ steps.get_cli_version.outputs.CLI_VERSION }}
if: needs.checks.outputs.HAS_TAG == 'false'
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Set Git author
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Get node version
id: get_node_version
run: |
echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "${{ steps.get_node_version.outputs.NVMRC }}"

- name: Install dependencies
run: yarn install

- name: Build
run: yarn build

- name: Bump CLI version
run: npm version patch --force

- name: Read version from package.json
id: get_cli_version
run: echo "CLI_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT

- name: Get latest tag
id: get_latest_tag
run: echo "LATEST_TAG=$(git describe --abbrev=0 --tags)" >> $GITHUB_OUTPUT

- name: Commit and push tag to main branch
run: |
git add .
git commit --amend -m "Release v${{ steps.get_cli_version.outputs.CLI_VERSION }}"
git tag -f ${{ steps.get_latest_tag.outputs.LATEST_TAG }}
git push origin main --follow-tags
steps:
- name: Create GitHub Release
uses: ncipollo/release-action@v1
uses: DevCycleHQ/release-action@main
with:
name: "v${{ steps.get_cli_version.outputs.CLI_VERSION }}"
tag: "v${{ steps.get_cli_version.outputs.CLI_VERSION }}"
generateReleaseNotes: "true"
makeLatest: "true"
draft: true
prerelease: true
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Publish to NPM
run: npm publish --access public

update_doc:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
needs: release
env:
BRANCH_NAME: update-cli-version-to-v${{ needs.release.outputs.CLI_VERSION }}
steps:
- name: Check out code
uses: actions/checkout@v2
with:
repository: DevCycleHQ/devcycle-docs
# need access token
token: ${{ secrets.PAT_TOKEN }}

- name: Set Git author
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Update CLI version in docs repo
run: |
ls -al
echo $BRANCH_NAME
git checkout -b "$BRANCH_NAME"
git branch
sed -i 's/const DVC_CLI_VERSION = .*/const DVC_CLI_VERSION = '\''v${{ needs.release.outputs.CLI_VERSION }}'\'' \/\/ auto updated by dvc cli release workflow/' docusaurus.config.js
git add docusaurus.config.js
git commit -m "Update CLI version to v${{ needs.release.outputs.CLI_VERSION }}"
- name: Push code to docs repo
run: |
git push --set-upstream origin "$BRANCH_NAME"
- name: Create PR
env:
# need access token
GH_TOKEN: ${{ secrets.PAT_TOKEN }}
run: gh pr create --repo DevCycleHQ/devcycle-docs --base main --head "$BRANCH_NAME" --title "Update CLI version to v${{ needs.release.outputs.CLI_VERSION }}" --body "This PR was automatically created by the DevCycle CLI release workflow."

NODE_AUTH_TOKEN: ${{ secrets.NPMJS_ACCESS_TOKEN }}
run: npm publish --access public
44 changes: 44 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Tag New Version

on:
workflow_dispatch:
# schedule:
# - cron: '0 12 * * 2' # Runs every Tuesday at 12:00 PM (noon) ET

jobs:
tag-new-version:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Get node version
id: get_node_version
run: |
echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "${{ steps.get_node_version.outputs.NVMRC }}"

- name: Install dependencies
run: yarn install

- name: Build
run: yarn build

- name: Bump CLI version
run: npm version patch --force

- name: Get latest tag
run: echo "LATEST_TAG=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV

- name: Commit and push tag to main branch
run: |
git add .
git commit --amend -m "Release $LATEST_TAG"
git tag -f $LATEST_TAG
git push origin main --follow-tags
49 changes: 49 additions & 0 deletions .github/workflows/update_doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Update Doc

on:
workflow_run:
workflows:
- "CLI Release"
types:
- completed

jobs:
update_doc:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Check out code
uses: actions/checkout@v3
with:
repository: DevCycleHQ/devcycle-docs
# need to get/update access token
token: ${{ secrets.PAT_TOKEN }}
fetch-depth: 0

- name: Get latest tag
id: get_latest_tag
run: echo "LATEST_TAG=$(git describe --abbrev=0 --tags)" >> $GITHUB_OUTPUT

- name: Update CLI version in docs repo
env:
CLI_VERSION: v${{ steps.get_latest_tag.outputs.LATEST_TAG }}
BRANCH_NAME: update-cli-version-to-${{ env.CLI_VERSION }}
run: |
git checkout -b "$BRANCH_NAME"
sed -i 's/const DVC_CLI_VERSION = .*/const DVC_CLI_VERSION = '\''$CLI_VERSION'\'' \/\/ auto updated by dvc cli release workflow/' docusaurus.config.js
git add docusaurus.config.js
git commit -m "Update CLI version to $CLI_VERSION"
- name: Push code to docs repo
run: |
git push --set-upstream origin "$BRANCH_NAME"
- name: Create PR
env:
# need to get/update access token
GH_TOKEN: ${{ secrets.PAT_TOKEN }}
CLI_VERSION: v${{ steps.get_latest_tag.outputs.LATEST_TAG }}
BRANCH_NAME: update-cli-version-to-${{ env.CLI_VERSION }}
run: gh pr create --repo DevCycleHQ/devcycle-docs --base main --head "$BRANCH_NAME" --title "Update CLI version to $CLI_VERSION" --body "This PR was automatically created by the DevCycle CLI release workflow."

0 comments on commit 22424c0

Please sign in to comment.