Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
add a publishing workflow action to dart-lang/benchmark_harness (#81)
Browse files Browse the repository at this point in the history
* blast_repo fixes

auto-publish

* publish from master

* update the reference to the publish workflow
  • Loading branch information
devoncarew authored Feb 2, 2023
1 parent 4e0c4e8 commit b1efcf7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# A CI configuration to auto-publish pub packages.

name: Publish

on:
pull_request:
branches: [ master ]
push:
tags: [ 'v[0-9]+.[0-9]+.[0-9]+*' ]

jobs:
publish:
if: ${{ github.repository_owner == 'dart-lang' }}
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,10 @@ This is the average amount of time it takes to run `run()` 10 times for
### Contributions

This package is carefully curated by the Dart team to exact specifications.
Please open an issue with any proposed changes, before submitting a Pull
Request.
Please open an issue with any proposed changes before submitting a pull
request.

## Publishing automation

For information about our publishing automation and release process, see
https://github.com/dart-lang/ecosystem/wiki/Publishing-automation.

0 comments on commit b1efcf7

Please sign in to comment.