Rename master to main and update news
Update CI and README to reflect rename.
Update News:
* Notify users of rename.
* Update minimum required VS compiler to 2019.
* Remove notice about versioning. This has been completed.
* Remove notice about SPIRV folder relocation. It has been 2.5 years
since this occured.
This commit is contained in:
parent
4e9cde50bb
commit
58d302cfa2
5 changed files with 31 additions and 41 deletions
10
.github/workflows/deploy.js
vendored
10
.github/workflows/deploy.js
vendored
|
|
@ -3,11 +3,11 @@ module.exports = async ({github, context, core}) => {
|
|||
await github.rest.git.updateRef({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
ref: 'tags/master-tot',
|
||||
ref: 'tags/main-tot',
|
||||
sha: context.sha
|
||||
})
|
||||
} catch (error) {
|
||||
core.setFailed(`upload master-tot tag; ${error.name}; ${error.message}`)
|
||||
core.setFailed(`upload main-tot tag; ${error.name}; ${error.message}`)
|
||||
}
|
||||
|
||||
let release
|
||||
|
|
@ -15,10 +15,10 @@ module.exports = async ({github, context, core}) => {
|
|||
release = await github.rest.repos.getReleaseByTag({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
tag: 'master-tot'
|
||||
tag: 'main-tot'
|
||||
})
|
||||
} catch (error) {
|
||||
core.setFailed(`get the master release; ${error.name}; ${error.message}`)
|
||||
core.setFailed(`get the main release; ${error.name}; ${error.message}`)
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
@ -28,7 +28,7 @@ module.exports = async ({github, context, core}) => {
|
|||
release_id: release.data.id
|
||||
})
|
||||
} catch (error) {
|
||||
core.setFailed(`update the master release; ${error.name}; ${error.message}`)
|
||||
core.setFailed(`update the main release; ${error.name}; ${error.message}`)
|
||||
}
|
||||
|
||||
let release_assets
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue