Skip to content

Commit

Permalink
ci: upload workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Z4karia committed Sep 24, 2024
1 parent 6432f6a commit 95890e6
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "main"
on:
- push

jobs:
configure:
runs-on: ubuntu-latest
outputs:
uid_gid: ${{ steps.get-user.outputs.uid_gid }}
datetime: ${{ steps.get-datetime.outputs.datetime }}
steps:
- id: get-user
run: echo "::set-output name=uid_gid::$(id -u):$(id -g)"
- id: get-datetime
run: echo "::set-output name=datetime::$(date +'%Y%m%d%H%M%S')"

build:
needs: [ configure ]
container:
image: zondax/rust-ci:latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Install node
uses: actions/setup-node@v2
with:
node-version: "^16.10.0"
- name: Install dependencies
run: yarn install
- name: Run test
run: yarn test
47 changes: 47 additions & 0 deletions .github/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: "Publish packages"

on:
release:
types:
- created
tags:
- "v[0-9]+(\\.[0-9]+)*"

jobs:
configure:
runs-on: ubuntu-latest
outputs:
datetime: ${{ steps.get-datetime.outputs.datetime }}
steps:
- id: get-datetime
run: echo "::set-output name=datetime::$(date +'%Y%m%d%H%M%S')"

publish_npm_package:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Install node
uses: actions/setup-node@v2
with:
node-version: '16'
registry-url: "https://registry.npmjs.org/"
scope: "@blooo"
- name: Install yarn
run: npm install -g yarn
- run: yarn install
- run: yarn build
- name: Get latest release version number
id: get_version
uses: battila7/get-version-action@v2
- name: Update tag
run: |
echo Publishing as ${{ steps.get_version.outputs.version }}
npm --allow-same-version --no-git-tag-version version ${{ steps.get_version.outputs.version }}
- name: Publish package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_PUBLISH_AUTO_GLOBAL }}
run: |
npm publish

0 comments on commit 95890e6

Please sign in to comment.