Skip to content

Commit

Permalink
ci: customize release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bayerju committed Jul 15, 2024
1 parent b8c1ce5 commit 830cb31
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 117 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/new-awesome-workflow.yml

This file was deleted.

126 changes: 42 additions & 84 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Release
name: Build and Update Release Branch

on:
push:
tags:
- "*"
branches:
- main

jobs:
test:
Expand All @@ -12,85 +12,43 @@ jobs:
build:
needs: test
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16.x"

- name: Get Version
id: version
run: |
echo "::set-output name=tag::$(git describe --abbrev=0 --tags)"
- name: Install dependencies
run: npm install

- name: Build
id: build
run: npm run build

- name: Package
run: |
mkdir ${{ github.event.repository.name }}
cp main.js manifest.json styles.css README.md ${{ github.event.repository.name }}
zip -r ${{ github.event.repository.name }}.zip ${{ github.event.repository.name }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ github.ref }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: true
prerelease: false

- name: Upload zip file
id: upload-zip
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./${{ github.event.repository.name }}.zip
asset_name: ${{ github.event.repository.name }}-${{ steps.version.outputs.tag }}.zip
asset_content_type: application/zip

- name: Upload main.js
id: upload-main
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./main.js
asset_name: main.js
asset_content_type: text/javascript

- name: Upload manifest.json
id: upload-manifest
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./manifest.json
asset_name: manifest.json
asset_content_type: application/json

- name: Upload styles.css
id: upload-css
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./styles.css
asset_name: styles.css
asset_content_type: text/css
- name: Checkout main branch
uses: actions/checkout@v2
with:
ref: main

- name: Set up Node.js (if you're using Node.js for your build process)
uses: actions/setup-node@v2
with:
node-version: '16.x'

- name: Install dependencies
run: npm install

- name: Build release files
run: npm run build

- name: Checkout release branch
run: |
git fetch origin
git switch --create release origin/release || git switch release
- name: Clear existing files on the release branch
run: |
git rm -rf .
git clean -fdx
# - name: Copy release files
# run: cp -r dist/* . # Adjust the source and destination as needed

- name: Commit and push changes
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Update release files"
git push origin release --force
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}

0 comments on commit 830cb31

Please sign in to comment.