ballerina-platform / ballerina-action

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Action for the Ballerina CLI

The GitHub Action for the Ballerina CLI wraps the bal command inside an Action.

Usage

name: Ballerina example

on: [push]

jobs:
  build:
    
    runs-on: ubuntu-latest
    
    steps:
      - name: Checkout
        uses: actions/checkout@v1
    
      - name: Ballerina Build
        uses: ballerina-platform/ballerina-action@master
        with:
          args: 
            pack

      - name: Ballerina Push
        uses: ballerina-platform/ballerina-action@master
        with:
          args: 
            push 
        env: 
            BALLERINA_CENTRAL_ACCESS_TOKEN: ${{ secrets.BallerinaToken }}

Environment variables

  • BALLERINA_CENTRAL_ACCESS_TOKEN – Required only for the "push" action to represent the Ballerina Central access token. Preparing for Publishing will guide to create the token.
  • WORKING_DIR – Required only if we need to change the current working directory of the repository to another relative path.

About

License:Apache License 2.0


Languages

Language:Dockerfile 60.7%Language:Shell 39.3%