See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
| # Template NodeJS build | |
| # This template allows you to validate your NodeJS code. | |
| # The workflow allows running tests and code linting on the default branch. | |
| image: node:10.15.3 | |
| pipelines: | |
| branches: | |
| main: |
Source: https://stefma.medium.com/how-to-store-a-android-keystore-safely-on-github-actions-f0cef9413784
Download GPG: https://gpgtools.org/
# encrypt file with a password (saved as release.keystore.asc)
# save string in github secrets etc.
gpg -c --armor release.keystore# dump manifest file in xml
bundletool dump manifest --bundle bundle.aab
# extract just the versionCode from aab
bundletool dump manifest --bundle bundle.aab --xpath /manifest/@android:versionCodeDownload for macOS: brew install bundletool
| version: '2' | |
| services: | |
| mariadb: | |
| image: docker.io/bitnami/mariadb:10.3 | |
| container_name: opencart-db | |
| volumes: | |
| - 'mariadb_data:/bitnami/mariadb' | |
| env_file: | |
| - production.env | |
| phpmyadmin: |
# tested on linux and macOS
echo $(wget whatthecommit.com -q -O -) | tr -d '\n' | sed -e 's/.*<p>\(.*\)<\/p>.*/\1/' | awk '{split($0,a,"</p>"); print a[1]}'| import React, {Component} from 'react'; | |
| import {Text, View} from 'react-native'; | |
| import CounterApp from '../Components/CounterApp'; | |
| import ErrorBoundries from '../Components/ErrorBoundries'; | |
| export default class AppContainer extends Component { | |
| render() { | |
| return ( | |
| <> | |
| <Text style={{alignSelf: 'center', marginTop: 20}}>Counter App</Text> |