mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-16 17:49:09 +00:00
feat: add midori skeleton, bot scaffolding, CD seeds
This commit is contained in:
parent
7c861b37ca
commit
49d44df231
30 changed files with 854 additions and 123 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
@ -41,6 +41,16 @@ jobs:
|
|||
--stamp \
|
||||
--workspace_status_command hack/workspace_status.sh
|
||||
|
||||
- name: Write Artifact Manifest
|
||||
run: |
|
||||
bash hack/generate_versions.sh > manifest.json
|
||||
|
||||
- name: Upload Artifact Manifest
|
||||
uses: actions/upload-artifact
|
||||
with:
|
||||
name: manifest.json
|
||||
path: manifest.json
|
||||
|
||||
- name: Publish Dev Container Image
|
||||
if: github.ref == 'refs/heads/main'
|
||||
run: |
|
||||
|
|
27
.github/workflows/release.yml
vendored
Normal file
27
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Release Workflow
|
||||
|
||||
on: workflow_dispatch
|
||||
|
||||
jobs:
|
||||
commit_release_tag:
|
||||
name: Commit Roleypoly Release Tag
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
with:
|
||||
ssh-key: ${{secrets.DEPLOY_KEY}}
|
||||
|
||||
# - name: Setup Git
|
||||
# uses: webfactory/ssh-agent@v0.2.0
|
||||
# with:
|
||||
# ssh-private-key: ${{ secrets.DEPLOY_KEY }}
|
||||
|
||||
- name: Push changes
|
||||
id: push
|
||||
run: |
|
||||
TAG=$(date +v%Y%m%d-%H%M%S)
|
||||
git config --local user.email "gh-automation@roleypoly.com"
|
||||
git config --local user.name "Roleypoly Release Automation"
|
||||
git tag $TAG
|
||||
git push origin $TAG
|
||||
echo "::set-output release_tag=${TAG}"
|
Loading…
Add table
Add a link
Reference in a new issue