Skip to content

GitHub Action for Zeplin Extension Manager

License

Notifications You must be signed in to change notification settings

artemnovichkov/action-zem

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Github Action for zem

This Action for zem enables arbitrary actions with the zem command-line client, including testing and publishing.

Usage

Executes zem with arguments listed in the Action's args.

name: Build, Test, and Publish

on: 
  release:
    types: [published]

jobs:
  build:
    name: Build
    runs-on: macOS-latest
    steps:
    - uses: actions/checkout@master
    - name: Test
      run: |
        npm i
        npm test
    - name: Publish
      uses: artemnovichkov/action-zem@master
      env:
        ZEM_ACCESS_TOKEN: ${{ secrets.ZEM_ACCESS_TOKEN }}
      with:
        args: publish

Secrets

  • ZEM_ACCESS_TOKEN - Optional. The token to use for authentication with zem. Required for zem publish. Create a new token here.

License

The Dockerfile and associated scripts and documentation in this project are released under the MIT License.