Skip to content

Commit

Permalink
version fixes and mewb and mecb artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mittelmark committed Aug 1, 2024
1 parent 9043a14 commit f3ede72
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 14 deletions.
58 changes: 45 additions & 13 deletions .github/workflows/binaries-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name: Binaries Ubuntu 64bit
on:
workflow_dispatch:
branches: [ master ]

env:
VERSION: "091224b"
jobs:
build:
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -36,23 +37,54 @@ jobs:

- name: Make release
run: |
mkdir MicroEmacs09-091223-Linux
mkdir MicroEmacs09-091223-Linux/bin
cp bfs/bfs MicroEmacs09-091223-Linux/bin/
cp src/.linux32gcc-release-mecw/mecw MicroEmacs09-091223-Linux/bin/
cp src/.linux32gcc-release-mec/mec MicroEmacs09-091223-Linux/bin/
cp me*.bin MicroEmacs09-091223-Linux/bin/
cp license.txt MicroEmacs09-091223-Linux/
cp COPYING MicroEmacs09-091223-Linux/
cp README-standalone.md MicroEmacs09-091223-Linux/
mkdir MicroEmacs09-${VERSION}-Linux
mkdir MicroEmacs09-${VERSION}-Linux/bin
cp bfs/bfs MicroEmacs09-${VERSION}-Linux/bin/
cp src/.linux32gcc-release-mecw/mecw MicroEmacs09-${VERSION}-Linux/bin/
cp src/.linux32gcc-release-mec/mec MicroEmacs09-${VERSION}-Linux/bin/
cp me*.bin MicroEmacs09-${VERSION}-Linux/bin/
cp license.txt MicroEmacs09-${VERSION}-Linux/
cp COPYING MicroEmacs09-${VERSION}-Linux/
cp README-standalone.md MicroEmacs09-${VERSION}-Linux/
cd jasspa
zip macros.zip macros/*
cd ..
cp jasspa/macros.zip MicroEmacs09-091223-Linux/
cp jasspa/macros.zip MicroEmacs09-${VERSION}-Linux/
- name: Make mecb release
run: |
mkdir MicroEmacs09-${VERSION}-Linux-mecb
mkdir MicroEmacs09-${VERSION}-Linux-mecb/bin
cp bfs/bfs MicroEmacs09-${VERSION}-Linux-mecb/bin/
cp mec*.bin MicroEmacs09-${VERSION}-Linux-mecb/bin/
cp license.txt MicroEmacs09-${VERSION}-Linux-mecb/
cp COPYING MicroEmacs09-${VERSION}-Linux-mecb/
cp README-standalone.md MicroEmacs09-${VERSION}-Linux-mecb/
- name: Make mewb release
run: |
mkdir MicroEmacs09-${VERSION}-Linux-mewb
mkdir MicroEmacs09-${VERSION}-Linux-mewb/bin
cp bfs/bfs MicroEmacs09-${VERSION}-Linux-mewb/bin/
cp mec*.bin MicroEmacs09-${VERSION}-Linux-mewb/bin/
cp license.txt MicroEmacs09-${VERSION}-Linux-mewb/
cp COPYING MicroEmacs09-${VERSION}-Linux-mewb/
cp README-standalone.md MicroEmacs09-${VERSION}-Linux-mewb/
- name: Upload Ubuntu Release files
uses: actions/upload-artifact@v4
with:
name: MicroEmacs09-091223-Linux
path: MicroEmacs09-091223-Linux
name: MicroEmacs09-${{ env.VERSION }}-Linux
path: MicroEmacs09-${{ env.VERSION }}-Linux

- name: Upload Ubuntu mecb Release files
uses: actions/upload-artifact@v4
with:
name: MicroEmacs09-${{ env.VERSION }}-Linux-mecb
path: MicroEmacs09-${{ env.VERSION }}-Linux-mecb

- name: Upload Ubuntu mewb Release files
uses: actions/upload-artifact@v4
with:
name: MicroEmacs09-${{ env.VERSION }}-Linux-mewb
path: MicroEmacs09-${{ env.VERSION }}-Linux-mewb
2 changes: 1 addition & 1 deletion .github/workflows/binaries-mingw32gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ master ]

env:
VERSION: "091223"
VERSION: "091224b"

jobs:
build:
Expand Down

0 comments on commit f3ede72

Please sign in to comment.