Skip to content

Commit b4b7ca9

Browse files
committed
Clone this repository (Assets) from Segugio. Added initial workflow files. Updated readme.
Update readme.md
1 parent ca739e3 commit b4b7ca9

File tree

6 files changed

+65
-7
lines changed

6 files changed

+65
-7
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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 }}"

.github/workflows/deploy.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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 }}"

.github/workflows/pull_request.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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 }}"

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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 }}"

.github/workflows/test_branch.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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 }}"

readme.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
# Segugio
2-
3-
[![Build Status](https://travis-ci.org/datacite/segugio.svg?branch=master)](https://travis-ci.org/datacite/segugio)
4-
1+
# Assets
52
The DataCite assets server. Uses the [middleman](https://middlemanapp.com/) static site generator.
63

74
## Development
@@ -12,10 +9,10 @@ bundle exec middleman
129
Or 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).

0 commit comments

Comments
 (0)