-
-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an action that releases automatically when a change lands on the …
…main branches #227 Improve doc (2) Improve doc Only trigger it on main branches Use version_tag (looks cleaner) Can't use fixed version, rollback Use fixed version Try another way Try ignoring #refs/heads/ Forgot stuff Simplify get branch Fix attempt Try to handle multiple "main" branches Bad commit id (wrong repo) Try using fixed version (safer than latest) Okay, gotta use latest, hasn't been released under a proper version Rety 1.1.0 Try using latest Remove code to see if warning keeps coming Alternative way to resolve current branch (3) Alternative way to resolve current branch (2) Alternative way to resolve current branch Print current branch Remove package.json:version (unnecessary) + add an action that releases automatically when a change lands on the main branches
- Loading branch information
1 parent
eadd976
commit 86cf92c
Showing
2 changed files
with
47 additions
and
1 deletion.
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,47 @@ | ||
# Summary: | ||
# Automatically tag and release when changes land on the "main" branches. | ||
# | ||
# See https://github.com/PaulHatch/semantic-version https://github.com/PaulHatch/semantic-version/tree/v3.1.2 | ||
# See https://github.com/marvinpinto/action-automatic-releases https://github.com/marvinpinto/action-automatic-releases/tree/v1.1.0 | ||
# See https://github.com/rlespinasse/github-slug-action https://github.com/rlespinasse/github-slug-action/tree/3.x | ||
|
||
name: 'Auto release' | ||
on: | ||
push: | ||
branches: | ||
# - main | ||
# - master | ||
- 'v2-*' # XXX NRN releases on v2 branches, but you'll likely want to release on either main or master | ||
|
||
jobs: | ||
tag-and-release: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: Expose GitHub slug/short variables # See https://github.com/rlespinasse/github-slug-action#exposed-github-environment-variables | ||
uses: rlespinasse/github-slug-action@v3.x | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # See https://github.com/PaulHatch/semantic-version#important-note-regarding-the-checkout-action | ||
- uses: paulhatch/semantic-version@v3.1.2 | ||
id: next_semantic_version # Output: https://github.com/PaulHatch/semantic-version/blob/master/index.js#L63-L69 | ||
with: # See https://github.com/PaulHatch/semantic-version#usage | ||
branch: ${{ env.GITHUB_REF_SLUG }} # Use current branch | ||
tag_prefix: "v" # The prefix to use to identify tags | ||
major_pattern: "(MAJOR)" # A string which, if present in a git commit, indicates that a change represents a major (breaking) change | ||
minor_pattern: "(MINOR)" # Same as above except indicating a minor change | ||
format: "${major}.${minor}.${patch}-${{ env.GITHUB_REF_SLUG }}.${increment}" # A string to determine the format of the version output | ||
- run: | | ||
echo "Branch name: ${{ env.GITHUB_REF_SLUG }}" | ||
echo ${{join(steps.next_semantic_version.outputs.*, ' - ')}} | ||
echo "Next version: ${{steps.next_semantic_version.outputs.version}}" | ||
echo "Next version tag: ${{steps.next_semantic_version.outputs.version_tag}}" | ||
- uses: marvinpinto/action-automatic-releases@10bdce64abdb4558a2ee6983192242be40d631d8 # Pin "latest" https://github.com/marvinpinto/action-automatic-releases/commit/10bdce64abdb4558a2ee6983192242be40d631d8 necessary to avoid "The `set-env` command is disabled." | ||
with: # See https://github.com/marvinpinto/action-automatic-releases/tree/v1.1.0#supported-parameters | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: ${{steps.next_semantic_version.outputs.version_tag}} | ||
prerelease: true | ||
title: "Automatic release ${{steps.next_semantic_version.outputs.version_tag}} (`${{ env.GITHUB_REF_SLUG }}`)" | ||
files: | | ||
README.md | ||
CHANGELOG.md | ||
LICENSE |
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"name": "next-right-now", | ||
"version": "1.0.0", | ||
"private": true, | ||
"scripts": { | ||
"start": "next dev --port 8888", | ||
|
86cf92c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not what you expected? Are your scores flaky? Run Lighthouse on Foo
If scores continue to be inconsistent consider running all audits on Foo