Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: roothide/Bootstrap
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: bankm1/Bootstrap
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 6 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 7, 2024

  1. Create build.yml

    bankm1 authored Jan 7, 2024
    Copy the full SHA
    b2a045c View commit details

Commits on Jan 9, 2024

  1. Copy the full SHA
    658a1d8 View commit details

Commits on Feb 21, 2024

  1. Copy the full SHA
    568da93 View commit details

Commits on Mar 6, 2024

  1. Copy the full SHA
    82ec5b4 View commit details

Commits on Aug 17, 2024

  1. Copy the full SHA
    945d10f View commit details

Commits on Dec 8, 2024

  1. Copy the full SHA
    59783bd View commit details
Showing with 59 additions and 0 deletions.
  1. +59 −0 .github/workflows/build.yml
59 changes: 59 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Build and Package

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:
name: Build Bootstrap
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true

- name: Install Theos
run: bash -c "$(curl -fsSL https://raw.githubusercontent.com/roothide/theos/master/bin/install-theos)"

- name: Setup Environment
run: echo "THEOS=~/theos" >> $GITHUB_ENV

- name: Make Bootstrap Package
run: make package

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: Bootstrap.tipa
path: ./packages/Bootstrap.tipa
update-release:
name: Release .tipa
runs-on: ubuntu-latest
needs: build

steps:
- name: Delete old release
uses: dev-drprasad/delete-tag-and-release@v0.2.1
with:
delete_release: true
tag_name: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get artifacts
uses: actions/download-artifact@v3
with:
name: Bootstrap.tipa
- name: Create new release
uses: ncipollo/release-action@v1
with:
name: Rolling Release
body: These are automatically updated builds of the latest commit.
artifacts: "Bootstrap.tipa"
tag: release
token: ${{ secrets.GITHUB_TOKEN }}