Update cross_comp_ubuntu.yaml #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust Cross Compile for Ubuntu Linux | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: write # Ensure this allows pushing tags and commits | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
component: rustfmt | |
- name: Install cross | |
run: cargo install cross | |
- name: Build for Ubuntu Linux (x86_64) | |
run: cross build --target x86_64-unknown-linux-gnu --release | |
- name: Create a new tag | |
id: tag | |
run: | | |
TAG="v$(date +'%Y%m%d%H%M%S')" # Example tag format: vYYYYMMDDHHMMSS | |
git tag $TAG | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git | |
git push origin $TAG | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload artifact for Ubuntu Linux | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ubuntu-build | |
path: target/x86_64-unknown-linux-gnu/release/mif | |
- name: Create GitHub Release | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: target/x86_64-unknown-linux-gnu/release/mif | |
tag_name: ${{ steps.tag.outputs.TAG }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload release assets | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: target/x86_64-unknown-linux-gnu/release/mif | |
tag_name: ${{ steps.tag.outputs.TAG }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |