Skip to content

Instantly share code, notes, and snippets.

View selvesandev's full-sized avatar
🎯
Focusing

Selvesan selvesandev

🎯
Focusing
View GitHub Profile
@selvesandev
selvesandev / prod-deployment.yml
Last active May 24, 2023 13:10
Deploy your serverless framework aws lambda function from github actions
name: Deploy to Production
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@selvesandev
selvesandev / buildspec.yaml
Created May 24, 2022 13:34
Deploy your serverless framework aws lambda function from aws code build
version: 0.2
phases:
install:
runtime-versions:
nodejs: 12
commands:
- npm install -g serverless
- npm install
- printenv
@vinicioslc
vinicioslc / flutter-android-cd.yml
Last active April 19, 2024 15:52
Build flutter releases in github actions for production only android for while.
# This is a basic workflow to help you get started with Actions
name: CD Internal-Lane
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
tags:
- "internal-v*.*.*" # on every version tag will build a new android artifact example: v3.1.2+6
jobs: