Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
updated yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Pickering committed Nov 18, 2021
1 parent b4aa20d commit 62672fe
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 23 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/build_deb.yml
Original file line number Diff line number Diff line change
@@ -1,23 +0,0 @@
name: "pre-release"

on:
push:
tags:
- "*.*.*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
# ...
- name: "Build & test"
run: |
echo "done!"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: *.jar
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "pre-release"

on:
push:
tags:
- "*.*.*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
- name: "Check out the repo"
uses: "actions/checkout@v2"

- name: "Build & test"
run: npm build

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: *
8 changes: 8 additions & 0 deletions readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,14 @@ to create cache:
Release Process
===============

create a new tag

.. code:: python
git tag x.x.x
git push origin --tags
1. run gulp build
2. put output into a release
3. build .deb's (see ``/scripts/readme.md``)
Expand Down

0 comments on commit 62672fe

Please sign in to comment.