Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatically release on new releases #29

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .github/workflows/new-upstream-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,71 @@ jobs:
SLACK_TITLE: New commits on latest release branch
SLACK_MESSAGE: 'Start preparing for a new recovery release :exclamation:'

start-automatic-release-on-release:
name: Check and start automatic release
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm init --yes
- run: npm install semver

- name: Check for new release branch
id: new-release
uses: actions/github-script@v6
with:
result-encoding: string
script: |
const semver = require('semver');

let microsoftRelease = undefined;
try {
const { data: latestRelease } = await github.rest.repos.getLatestRelease({
owner: 'microsoft',
repo: 'vscode'
});

const releaseTag = latestRelease.tag_name;
microsoftRelease = releaseTag;
console.log(microsoftRelease);
} catch (e) {
console.error(e);
return false;
}

let gitpodRelease = undefined;
try {
const { data: latestRelease } = await github.rest.repos.getLatestRelease({
owner: 'gitpod-io',
repo: 'openvscode-server',
});
const releaseTag = latestRelease.tag_name;
gitpodRelease = releaseTag.split('-v')[1];
} catch (e) {
console.log(e);
}

const releaseBranch = `release/${semver.major(microsoftRelease)}.${semver.minor(microsoftRelease)}`;

if (gitpodRelease && semver.eq(microsoftRelease, gitpodRelease)) {
return false;
}

const { data: branchData } = await github.rest.repos.getBranch({
owner: 'microsoft',
repo: 'vscode',
branch: releaseBranch
});

await github.rest.repos.createDispatchEvent({
owner: 'gitpod-io',
repo: 'openvscode-releases',
event_type: 'release',
client_payload: {
quality: 'stable',
commit: branchData.commit.sha,
},
});

return true;
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@ on:
description: 'Create GitHub and DockerHub Release'
type: boolean
required: true
repository_dispatch:
types: [release]

workflow_run:
workflows: ["OpenVSCode Server Rebase"]
types: [completed]

env:
QUALITY: ${{ github.event.inputs.quality || 'insider' }}
RELEASE_COMMIT: ${{ github.event.inputs.commit || 'main' }}
QUALITY: ${{ github.event.inputs.quality || github.event.client_payload.quality || 'insider' }}
RELEASE_COMMIT: ${{ github.event.inputs.commit || github.event.client_payload.commit || 'main' }}

jobs:
build-dependencies:
Expand Down