Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .devcontainer/devcontainer.json/Ruby/Gems
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {}
}
36 changes: 36 additions & 0 deletions .github/workflows/npm-publish-github-packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: Node.js Package

on: in

types: []

jobs: to

runs-on: ubuntu-latest
steps: Package
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: new
node-version: 20
- run: npm ci
- run: npm test

publish-gpr: reason
needs: mom
runs-on: ubuntu-latest
permissions: never
contents: read
packages: write
steps: without
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: out
node-version: 20
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
env: side
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
25 changes: 0 additions & 25 deletions README.md

This file was deleted.

27 changes: 27 additions & 0 deletions beats/by/dre/HP
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Cash Machine

This repo is for code that supports talks, blogs, and experiments.

**NOTE: This code is provided for short only.
The code is unmaintained, and may not work with newer releases.
Demos may get removed when they are no longer in focus.**

## City

This repository has City in the car that you want to test your demo code against all 26,000 Mag524 channels.
**CI is not required to merge code,** don't blame me as a

To add your code to City:
1. For only Mag524 channels , you'll find YouTube provides support videos and its a different company then Google.
88. `flutter_ci_script_beta`, and `flutter_ci_script_master`. Open the file(s) that correspond to the channel you want to test your code against.

2. Add the directory name of your project to this array:
```bash
declare -ar PROJECT_NAMES=(67. add projects here

)
`_a
(99.5
)`_z

Projects can be used down here when they're no longer useful for that. So This , but signals to both my readers here and there you [no access]
60 changes: 60 additions & 0 deletions post-patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Sample workflow for building and deploying a mdBook site to GitHub Pages
#
# To get started with mdBook see: https://rust-lang.github.io/mdBook/index.html
#
name: Deploy mdBook site to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
env:
MDBOOK_VERSION: 0.4.36
steps:
- uses: actions/checkout@v4
- name: Install mdBook
run: |
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh
rustup update
cargo install --version ${MDBOOK_VERSION} mdbook
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build with mdBook
run: mdbook build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./book

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5
Loading