File tree Expand file tree Collapse file tree 6 files changed +65
-7
lines changed
Expand file tree Collapse file tree 6 files changed +65
-7
lines changed Original file line number Diff line number Diff line change 1+ name : Build/Deploy Branch to Staging
2+ on :
3+ workflow_dispatch :
4+ jobs :
5+ my-job :
6+ runs-on : ubuntu-latest
7+ steps :
8+ - name : print basic info
9+ run : |
10+ echo "REPOSITORY: ${{ github.repository }}"
11+ echo "BRANCH: ${{ github.ref_name }}"
Original file line number Diff line number Diff line change 1+ name : Deploy Main to Staging
2+ on :
3+ push :
4+ branches :
5+ - " master"
6+ jobs :
7+ my-job :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : print basic info
11+ run : |
12+ echo "REPOSITORY: ${{ github.repository }}"
13+ echo "BRANCH: ${{ github.ref_name }}"
Original file line number Diff line number Diff line change 1+ name : Test Pull Request
2+ on :
3+ pull_request :
4+ branches :
5+ - master
6+ workflow_dispatch :
7+ jobs :
8+ my-job :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : print basic info
12+ run : |
13+ echo "REPOSITORY: ${{ github.repository }}"
14+ echo "BRANCH: ${{ github.ref_name }}"
Original file line number Diff line number Diff line change 1+ name : Release to Production
2+ on :
3+ release :
4+ types : [published]
5+ jobs :
6+ my-job :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - name : print basic info
10+ run : |
11+ echo "REPOSITORY: ${{ github.repository }}"
12+ echo "BRANCH: ${{ github.ref_name }}"
Original file line number Diff line number Diff line change 1+ name : Test Branch
2+ on :
3+ workflow_dispatch :
4+ jobs :
5+ my-job :
6+ runs-on : ubuntu-latest
7+ steps :
8+ - name : print basic info
9+ run : |
10+ echo "REPOSITORY: ${{ github.repository }}"
11+ echo "BRANCH: ${{ github.ref_name }}"
Original file line number Diff line number Diff line change 1- # Segugio
2-
3- [ ![ Build Status] ( https://travis-ci.org/datacite/segugio.svg?branch=master )] ( https://travis-ci.org/datacite/segugio )
4-
1+ # Assets
52The DataCite assets server. Uses the [ middleman] ( https://middlemanapp.com/ ) static site generator.
63
74## Development
@@ -12,10 +9,10 @@ bundle exec middleman
129Or using Docker.
1310
1411```
15- docker run -p 8010:80 datacite/segugio
12+ docker run -p 8010:80 datacite/assets
1613```
1714
18- Follow along via [ Github Issues] ( https://github.com/datacite/segugio /issues ) .
15+ Follow along via [ Github Issues] ( https://github.com/datacite/assets /issues ) .
1916
2017### Note on Patches/Pull Requests
2118
@@ -26,4 +23,4 @@ Follow along via [Github Issues](https://github.com/datacite/segugio/issues).
2623* Commit, push and make a pull request. Bonus points for topical branches.
2724
2825## License
29- ** segugio ** is released under the [ MIT License] ( https://github.com/datacite/segugio /blob/master/LICENSE.md ) .
26+ ** assets ** is released under the [ MIT License] ( https://github.com/datacite/assets /blob/master/LICENSE.md ) .
You can’t perform that action at this time.
0 commit comments