mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00

* no artifacts, not required * renamed * cleanup and comments * pass build args * two-step docker build * renamed to as we might push to any docker repo * rename and cleanup * added some docs and expectation about the CI/CD and release information * combined all workflows into steps
26 lines
537 B
Markdown
26 lines
537 B
Markdown
Every push or pull request will
|
|
|
|
- run the tests
|
|
|
|
Every push to master will
|
|
|
|
- run the tests
|
|
- publish the latest docker image to dockerhub
|
|
|
|
Creating a tag that starts with `v` will
|
|
|
|
- create a new github release
|
|
- publish the release to npm
|
|
- publish the release to dockerhub
|
|
|
|
Creating a release from the github web interface will
|
|
|
|
- publish the release to npm
|
|
- publish the release to dockerhub
|
|
|
|
Creating the release for version `0.2021.001` from the command line works as follows
|
|
|
|
git tag v0.2021.001
|
|
git push --tags
|
|
|